私はデジタル海洋でUbuntu 16.04を実行しているVMを持っています。私はノードとgitをインストールしました。私は私のレポを引き出し、すべての依存関係をインストールしようとしています。npm install installsがインストールされていますが、node_modulesが空です。
私はプロジェクトフォルダ内でnpm install
を実行します。すべてが正しくインストールされるように見えます。それから私はnode server.js
を実行して私のアプリを起動しようとすると、私はmodule not found errors
のすべての種類を取得します。
node_modules
の中を見ると、ディレクトリは空です。
何が起こっている可能性がありますか?
出力:
[email protected]:~/codetrunk# npm install --save
npm WARN deprecated [email protected]: This package is no longer maintained
npm WARN deprecated [email protected]: This package is deprecated. Use Array.isArray.
npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
npm WARN deprecated [email protected]: [email protected]<3.0.0 is no longer maintained. Upgrade to [email protected]^4.0.0.
npm WARN deprecated [email protected]: graceful-fs v3.0.0 and before will fail on node releases >= v7.0. Please update to [email protected]^4.0.0 as soon as possible. Use 'npm ls graceful-fs' to find it in the tree.
npm WARN deprecated [email protected]: graceful-fs v3.0.0 and before will fail on node releases >= v7.0. Please update to [email protected]^4.0.0 as soon as possible. Use 'npm ls graceful-fs' to find it in the tree.
Killed ...]/extract:alt: verb gentlyRm don't care about contents; nuking /root/codetrunk/node_modules/.staging/alt-983484ae/node
[email protected]:~/codetrunk# ls
app bower.json config.js gulpfile.js models node_modules package.json public server.js views
[email protected]:~/codetrunk# cd node_modules/
[email protected]:~/codetrunk/node_modules# ls
[email protected]:~/codetrunk/node_modules# ls
[email protected]:~/codetrunk/node_modules#
依存しているパッケージがすべて非推奨になっているわけではありません。たぶんこれが理由です。 –
package.jsonファイルはありますか? npm initを実行してみてください – vincentjp
これに関する解決策はありますか? – kbariotis