1. ホーム
  2. node.js

[解決済み] npmでnodemonが見つからない

2023-04-21 07:03:42

質問

問題があります: nodemonがnpmスクリプトから実行されません(例えば npm start ),

が、npmスクリプトの外のコマンドラインでnodemonが呼び出された場合、nodemonは通常通り実行されます。

$ nodemon server.js
14 Feb 22:59:51 - [nodemon] v1.3.7
14 Feb 22:59:51 - [nodemon] to restart at any time, enter `rs`
14 Feb 22:59:51 - [nodemon] watching: *.*
14 Feb 22:59:51 - [nodemon] starting `node server.js`

npmスクリプトでどのように呼び出すか。

package.json

{
...
  "scripts": {
    "start": "nodemon server.js"
  }
}

npm起動スクリプト実行時。

$ npm start
> [email protected] start /home/akul/Documents/aaa
> nodemon server.js

sh: 1: nodemon: not found

npm ERR! Linux 3.13.0-45-generic
npm ERR! argv "node" "/home/akul/npm-global/bin/npm" "start"
npm ERR! node v0.12.0
npm ERR! npm  v2.5.0
npm ERR! code ELIFECYCLE
npm ERR! [email protected] start: `nodemon server.js`
npm ERR! Exit status 127
npm ERR! 
npm ERR! Failed at the [email protected] start script 'nodemon server.js'.
npm ERR! This is most likely a problem with the aaa package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     nodemon server.js
npm ERR! You can get their info via:
npm ERR!     npm owner ls aaa
npm ERR! There is likely additional logging output above.

npm ERR! Please include the following file with any support request:
npm ERR!     /home/akul/Documents/aaa/npm-debug.log

解決策を探したのですが、見つかりませんでした。

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

この問題を解決するには nodemon を追加することで解決します。 package.json :

npm install nodemon --save-dev

問題が発生するのは nodemon に存在しない場合です。 /node_modules/.bin .

追加された --save-dev は開発時のみ必要なため、追加しました。