你在尝试" npm install"命令我得到了这个错误:
无法阅读" es6-shim"的输入内容。您应该检查" es6-shim.d.ts"中的输入路径。是最新的
由于无法连接到" https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/9807d9b701f58be068cb07833d2b24235351d052/es6-shim/es6-shim.d.ts" 而导致
由连接引起ETIMEDOUT 10.10.34.36:443
typings.json:
{
"globalDependencies": {
"es6-shim": "registry:dt/es6-shim#0.31.2+20160602141504"
}
}
我在这里做错了什么?
答案 0 :(得分:1)
10.10.34.36:443
表示您所在的国家/地区已对https://raw.githubusercontent.com
进行过滤/审核。但是现在有更好的方法来管理它。根据TS的新建议是使用NPM来管理您的打字:
npm install --save-dev @types/core-js
它与安装普通的npm包相同,但它在开头有@types/
。您可以在node_modules\@types
文件夹中找到已安装的软件包。