web-dev-qa-db-ja.com

NPMのインストールでエラーを取得するNPM ERR CB()呼び出されたことがない

NPM Global Configにプロキシを設定しました。パッケージをインストールする場合は、次のエラーが発生しています。以下はマイノードとNPMバージョンです.NPM:6.13.4ノード:V12.16.1

私は代理人の後ろにいるので、この問題を克服するために他に何が必要です。すべての助けが高く評価されます。また、ノードのバージョンを更新して、プロキシを再起動してから再起動してから再起動したが、そのうちのどれもしませんでした。

    C:\test>npm i level-db-helper
    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\user\AppData\Roaming\npm-cache\_logs\2020-03-03T04_51_02_995Z-debug.log

    C:\test>npm get proxy
    http://my-proxy.com:8080

    C:\test>npm get https-proxy
    http://my-proxy.com:8080

    C:\test>
 _

以下は私のログファイルの内容です

0 info it worked if it ends with ok
1 verbose cli [
1 verbose cli   'C:\\Program Files\\nodejs\\node.exe',
1 verbose cli   'C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js',
1 verbose cli   'i',
1 verbose cli   'level-db-helper'
1 verbose cli ]
2 info using [email protected]
3 info using [email protected]
4 verbose npm-session b2d05546852e6399
5 silly install loadCurrentTree
6 silly install readLocalPackageData
7 timing npm Completed in 3615ms
8 error cb() never called!
9 error This is an error with npm itself. Please report this error at:
10 error <https://npm.community>
 _
4
Hemendra

NPMがDockerからインストールされたときに同じエラーが発生しました。次のコマンドを使用して、使用済みのDockerイメージを削除しました。

docker image Prune
docker image rm <imageId>
 _

それは私のための問題を解決しました

0
shafeervn