方法 1:通过 nrm 管理 npm 源
安装 npm 源管理器 nrm
# npm install -g nrm
查询可用源
# nrm ls npm ---- https://registry.npmjs.org/ cnpm --- http://r.cnpmjs.org/ * taobao - https://registry.npm.taobao.org/ nj ----- https://registry.nodejitsu.com/ rednpm - http://registry.mirror.cqupt.edu.cn/ npmMirror https://skimdb.npmjs.com/registry/ edunpm - http://registry.enpmjs.org/
测试源相应时间
# nrm test npm ---- 5547ms cnpm --- 66ms * taobao - 5224ms nj ----- Fetch Error rednpm - 59ms npmMirror 8033ms edunpm - 62ms
切换源到 cnpm
# nrm use cnpm
方法 2:
安装 cnpm
#npm install -g cnpm --registry=https://registry.npm.taobao.org #ln -s /opt/node/bin/cnpm /usr/local/bin/cnpm #cnpm install express
方法 3:
修改 npm 源
#npm config set registry https://registry.npm.taobao.org //查看修改后的源 #npm config get registry
欢迎来到这里!
我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。
注册 关于