npm installを実行した際以下のエラーが出て失敗します。
npm ERR! cb() never called!
npm ERR! This is an error with npm itself. Please report this error at:
npm ERR! https://npm.community
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\XXX\AppData\Roaming\npm-cache_logs\2022-01-01T03_52_24_165Z-debug.log
ネットで検索し、いくつもの対処法を試したのですが同様の結果でした。
試したこと
rm -rf node_modulesもしくは手動でnode_modules削除後
- npm install --no-bin-linksで実行
- npm cache verify
- npm cache clean --forceなどです
気になる点として以下のサイトより
qiitaサイト
$ rm -rf node_modules
$ npm cache clean --force
$ npm cache ls
$ rm -rf ~/.npm
$ npm install
//or
$ npm install --no-bin-links
を実行しました。
その際
$ npm cache lsを実行したところ以下のエラーが出ました。なにか関係はありませんでしょうか?
npm ERR! Usage: npm cache add <tarball file>
npm ERR! npm cache add <folder>
npm ERR! npm cache add <tarball url>
npm ERR! npm cache add <git url>
npm ERR! npm cache add <name>@<version>
npm ERR! npm cache clean
npm ERR! npm cache verify
環境など
環境 windows10
gitbash にて実行
他のリポジトリではnpm installは成功する
他の人が実行した場合npm install は成功する
node バージョン v14.18.1
npm バージョン 6.14.15
そのほか足りない情報がありましたら、教えてください。追記いたします。
あなたの回答
tips
プレビュー