我在开始使用Angular 2 Quickstart Project时遇到问题,尤其是执行npm install
。
我收到了证书错误:
打字ERR!消息无法读取“es6-shim”的输入。 您应该检查“es6-shim.d.ts”中的输入路径是最新的类型ERR!由无法连接到“https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/6697d6f7dadbf5773cb40ecda35a76027e0783b2/es6-shim/es6-shim.d.ts”导致 打字ERR!因无法获得本地发行人证书而引起的
我在公司环境中支持代理,并尝试在我的npm配置中使用strict-ssl = false
解决此问题,但这没有任何区别。
有人有任何其他建议吗?
由于
答案 0 :(得分:1)
在命令提示符下,设置代理。
set HTTP_PROXY=http://your_username:your_password@domain_name:port
set HTTPS_PROXY=http://your_username:your_password@domain_name:port
npm config set proxy=http://your_username:your_password@domain_name:port
npm config set https-proxy=http://your_username:your_password@domain_name:port
这应解决问题