npm审计返回无法将undefined或null转换为对象

2wnc66cl  于 2022-11-14  发布在  其他
关注(0)|答案(1)|浏览(1008)

我在跑

npm audit --registry=https://registry.npmjs.org

指定注册表,因为我在项目中使用的是不支持审核的专用注册表。我收到以下错误:

npm ERR! Cannot convert undefined or null to object

npm ERR! A complete log of this run can be found in:
npm ERR!     /Users/Viraj/.npm/_logs/2022-10-31T08_33_23_876Z-debug-0.log
eyh26e7m

eyh26e7m1#

Cannot convert undefined or null to object可能由于网络超时问题而发生。(reference)
我有几个软件包是来自私人npm注册表,一旦我卸载他们(从审计删除他们),我能够运行npm审计没有任何问题

相关问题