无法解构“节点”的属性“名称”,因为它为空

Ehs*_*rii 3 node.js npm aurelia

当我想安装 aurelia 项目的依赖项时,出现此错误:

npm ERR! code 1
npm ERR! git dep preparation failed
npm ERR! command /Users/ehsanghaffarii/.nvm/versions/node/v15.5.1/bin/node /Users/ehsanghaffarii/.nvm/versions/node/v15.5.1/lib/node_modules/npm/bin/npm-cli.js install --cache=/Users/ehsanghaffarii/.npm/_cacache --prefer-offline=false --prefer-online=false --offline=false --no-progress --no-save --no-audit
npm ERR! npm ERR! code ERESOLVE
npm ERR! npm ERR! Cannot destructure property 'name' of 'node' as it is null.
npm ERR!
npm ERR! npm ERR! A complete log of this run can be found in:
npm ERR! npm ERR!     /Users/ehsanghaffarii/.npm/_cacache/_logs/2021-01-14T17_17_22_767Z-debug.log

npm ERR! A complete log of this run can be found in:
npm ERR!     /Users/ehsanghaffarii/.npm/_logs/2021-01-14T17_19_13_263Z-debug.log
Run Code Online (Sandbox Code Playgroud)

如何解决这个问题?

节点 v15.5.1

npm v7.3.0

Reb*_*orn 6

在我和这个 GitHub 线程看来,您正在尝试安装需要提升权限和/或 npm 包版本有问题的全局依赖项。确保您有足够的权限降级npm到最早的版本。

如果这解决了您的问题,请告诉我。

  • 对我来说,唯一有效的解决方案是返回 npm v6 `npm i -g npm@6` (3认同)