如何修复npm审计修复的端点错误?

x33g5p2x  于 2023-04-06  发布在  其他
关注(0)|答案(1)|浏览(126)

当我运行'npm audit fix'时,它返回
npm WARN audit Unable to authenticate && npm ERR!audit endpoint returned an error

s4chpxco

s4chpxco1#

您可以通过运行以下命令更改注册表

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

或将下面的内容添加到~/.npmrc

registry=https://registry.npmjs.org

相关问题