1. ホーム
  2. node.js

[解決済み] npm は package.json を見つけることができません。

2022-04-20 09:20:10

質問

私はいくつかの例:npmの依存関係をインストールしようとしています。 express 2.5.8 をダウンロードしましたが、どのアプリも同じエラーを投げます。

c:\node\stylus>npm install -d
npm info it worked if it ends with ok
npm info using [email protected]
npm info using [email protected]
npm ERR! Couldn't read dependencies.

npm ERR! Error: ENOENT, no such file or directory 'c:\node\stylus\package.json'
npm ERR! You may report this log at:
npm ERR!     <http://github.com/isaacs/npm/issues>
npm ERR! or email it to:
npm ERR!     <[email protected]>
npm ERR!
npm ERR! System Windows_NT 6.1.7600
npm ERR! command "C:\\Program Files (x86)\\nodejs\\\\node.exe" "C:\\Program File
s (x86)\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "install" "-d"
npm ERR! cwd c:\node\stylus
npm ERR! node -v v0.6.11
npm ERR! npm -v 1.1.1
npm ERR! path c:\node\stylus\package.json
npm ERR! code ENOENT
npm ERR! message ENOENT, no such file or directory 'c:\node\stylus\package.json'

npm ERR! errno {}
npm ERR!
npm ERR! Additional logging details can be found in:
npm ERR!     c:\node\stylus\npm-debug.log
npm not ok

閉塞感があるように見える。

no such file or directory 'c:\nodestylus﹑package.json

を作成するステップを見落としたのでしょうか? package.json ?

走っています。

  • Windows 7 64ビット
  • npm 1.1.1
  • ノード6.11
  • エクスプレス 2.5.8

どのように解決するのか?

2021年アップデート

npm init

をご参照ください。 ディーパリの は、詳細を回答してください。

オリジナル・アウトデッド・アンサー

express用のディレクトリを設定し忘れているのでは?

express <yourdirectory>

そうすると、ファイルの束が表示されるはずですので、次にコマンドを実行してください。

npm install -d

リーズナブル。