angular2 quickstart npm安装失败

时间:2016-03-29 05:57:57

标签: node.js angular exitstatus

当我尝试运行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.




我该如何解决这个问题?

4 个答案:

答案 0 :(得分:13)

确保已安装typings个包。

npm install -g typings

还要确保您有typings.json个文件。

您可以从Angular2小组关注此tutorial

答案 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)

确保你没有太旧的npm版本。您可以看到如何升级here

获得新的npm版本后,请安装typings包:

npm install -g typings