npm package下载超级慢有没有
最近一直在学nodeJS, npm package manager 这是必不可少的。原因挺简单,在国内访问外网太慢。。。大家都懂得~
两种解决方案:
solution 1 replace registry url
用其它registry url 来加速npm,有
cnpm
,taobao npm
, 具体还要看包的完整性及所需要的依赖。
1 | npm config set registry http://registry.cnpmjs.org npm info underscore |
cnpm offical configuration, 一键完成
1 | npm install -g cnpm --registry=http://r.cnpmjs.org |
其它registry-url:
https://registry.npm.taobao.org
solution 2 use proxy
close npm https
1 | npm config set strict-ssl false |
configure npm proxy address
如果有ss代理的话,推荐这种方式。
1 | npm config set proxy=http://127.0.0.1:8087 |
if clean proxy
1 | npm config delete http-proxy |
Author: itabas016
Link: https://tech.itabas.com/2016/10/29/tools/slove-npm-package-slow-speed/
License: CC BY-NC-ND 4.0