0

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

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

npm 错误!代码 E404
npm 错误!404 未找到 - 获取https://registry.npmjs.org/functionscdn.azureedge.net - 未找到
npm 错误!404 'functionscdn.azureedge.net@latest' 不在 npm 注册表中。
npm 错误!404 你应该让作者发布它(或自己使用名称!)

问候

4

1 回答 1

3

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

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

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

于 2020-03-31T09:37:38.960 回答