当我尝试运行npm install时出现以下错误。错误如下:
npm ERR! node v0.12.12
npm ERR! npm v3.3.6
npm ERR! code ELIFECYCLE
npm ERR! angular2-quickstart@1.0.0 postinstall: `typings install`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the angular2-quickstart@1.0.0 postinstall script 'typings ins
tall'.
npm ERR! This is most likely a problem with the angular2-quickstart package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR! typings install
npm ERR! You can get their info via:
npm ERR! npm owner ls angular2-quickstart
npm ERR! There is likely additional logging output above.

我该如何解决这个问题?
答案 0 :(得分:13)
答案 1 :(得分:4)
不一样的错误,但我遇到导致typings install
失败的代理问题:如果npm
遇到代理问题,那么typings
会遇到代理问题太
我得到的错误是:
typings ERR! message Unable to connect to "https://api.typings.org/entries/dt/selenium-webdriver/tags/2.44.0%2B20160317120654"
typings ERR! caused by connect ECONNREFUSED 104.24.112.177:443
我通过在typings
文件夹中为%HOMEPATH%
创建设置文件来解决此问题:
<强>%HOMEPATH%\。typingsrc 强>
proxy=http://DOMAIN%5Cusername:password@proxy:port/
https-proxy=http://DOMAIN%5Cusername:password@proxy:port/
rejectUnauthorized=false
有关详细信息,请参阅以下链接:第一个建议将.typingsrc
文件放在项目文件夹中,但您可以使用npm
之类的主文件夹。
答案 2 :(得分:0)
我支持公司代理, 我刚尝试使用以下内容创建一个.typingsrc文件,并将其放在我的应用程序的根文件夹中
{
"proxy":"http://proxy-server:8080",
"rejectUnauthorized": false
}
终于工作了......
答案 3 :(得分:0)