找不到-GET https://registry.npmjs.org/functionscdn.azureedge.net-找不到

时间:2020-03-29 11:09:56

标签: azure-functions azure-functions-runtime azure-functions-core-tools azure-function-app-proxy

npm i -g azure-functions-core-tools @ 3 --unsafe-perm true --force --trusted-host aunctionscdn.azureedge.net

大家好,我一直在尝试使用我的公司代理后面的上述命令安装azure-functions-core工具,但返回此错误。需要一些帮助。非常感谢:

npm ERR!代码E404
npm ERR! 404未找到-GET https://registry.npmjs.org/functionscdn.azureedge.net-未找到
npm ERR! 404'functionscdn.azureedge.net@latest'不在npm注册表中。
npm ERR! 404您应该请作者打扰以发布它(或使用您自己的名字!)

致谢

1 个答案:

答案 0 :(得分:2)

如果这是最简单的解决方法,则可以覆盖特定范围的注册表。例如:

npm config set @types:registry https://registry.npmjs.org/

这将告诉npm始终直接从Internet上的官方服务器获取@types范围的任何内容。有关更多详细信息,请参阅此issue