`npm install` 在中国失效了

问题描述 投票:0回答:5

使用

npm
安装
node.js
应用程序的依赖项时,它会停止。 但是在中国境外使用没有任何问题。谁知道如何让它发挥作用旁边
VPN/SSH channel

$ npm install
npm http GET https://registry.npmjs.org/jade
npm http GET https://registry.npmjs.org/formidable
# ... ... halt for hours and hours ... march 2014
# ... ... halts times after times ...
node.js networking npm
5个回答
14
投票

现在也有中文注册表了:

$ npm config set registry http://r.cnpmjs.org
$ npm install

它与registry.npmjs.org同步。


13
投票

中国的另一个镜像是https://registry.npm.taobao.org/.

$ npm config set registry https://registry.npm.taobao.org/
$ npm install

7
投票

使用淘宝镜像即可

npm install -g cnpm --registry=http://registry.npm.taobao.org
cnpm install -g your-lib-name

6
投票

也许它可以与欧洲注册机构一起使用?

$ npm config set registry http://registry.npmjs.eu
$ npm install

除非这也被阻止了?


0
投票

您还可以配置项目根目录下的

.npmrc
文件,放入以下内容:

//.npmrc
registry=http://r.cnpmjs.org
© www.soinside.com 2019 - 2024. All rights reserved.