npmコマンド実行時に以下のエラーが出てコマンドが実行できなかったので、対処法をメモ。
環境はWindows 10です。
表示されたエラー
npm ERR! Windows_NT 10.0.17134
npm ERR! argv “C:\\Program Files (x86)\\nodejs\\node.exe” “C:\\Users\\onocom\\AppData\\Roaming\\npm\\node_modules\\npm\\bin\\npm-cli.js” “install” “–no-bin-links”
npm ERR! node v8.11.3
npm ERR! npm v3.5.2
npm ERR! code MODULE_NOT_FOUND
npm ERR! Cannot find module ‘internal/util/types’
npm ERR!
npm ERR! If you need help, you may report this error at:
npm ERR! <https://github.com/npm/npm/issues>
npm ERR! Please include the following file with any support request:
npm ERR! C:\Users\onocom\Desktop\webpack\npm-debug.log
対処方法
上記エラーが出た場合は、以下のディレクトリを削除して再実行することにより動作するようになった。
C:\Users\[ユーザー名]\AppData\Roaming\npm\node_modules
上記で治らない場合は、以下のGitHubも参考になりそうです。
https://github.com/remy/nodemon/issues/1124