码迷,mamicode.com
首页 > 其他好文 > 详细

npm切换下载安装包的仓库

时间:2019-10-31 23:20:59      阅读:358      评论:0      收藏:0      [点我收藏+]

标签:col   test   div   http   set   前端学习   err   淘宝   unp   

(一)直接使用npm命令切换

  1.设置使用淘宝镜像

npm config set registry  + 需要切换的仓库地址
npm config set registry https://registry.npm.taobao.org

  2.查看当前资源,看是否切换成功,成功后可直接使用cnpm命令

npm config get registry

  3.还原到npm仓库

npm config set registry https://registry.npmjs.org

(二)使用nrm快捷切换npm默认仓库

  1.安装nrm

# 安装nrm
npm i -g nrm
 
# 列出所有npm源
nrm ls
D:\前端学习资料\PracticeDemo>nrm ls

  npm -------- https://registry.npmjs.org/
  yarn ------- https://registry.yarnpkg.com/
  cnpm ------- http://r.cnpmjs.org/
* taobao ----- https://registry.npm.taobao.org/
  nj --------- https://registry.nodejitsu.com/
  npmMirror -- https://skimdb.npmjs.com/registry/
  edunpm ----- http://registry.enpmjs.org/

  前面有*的代表当前使用的仓库。

  2.切到npm,使用nrm use npm

D:\前端学习资料\PracticeDemo>nrm use npm

  Registry has been set to: https://registry.npmjs.org/

  3.测试所有仓库响应的时间

D:\前端学习资料\PracticeDemo>nrm test

* npm ---- 1130ms
  yarn --- 2339ms
  cnpm --- 1986ms
  taobao - 704ms
  nj ----- Fetch Error
  npmMirror  9314ms
  edunpm - Fetch Error

 

npm切换下载安装包的仓库

标签:col   test   div   http   set   前端学习   err   淘宝   unp   

原文地址:https://www.cnblogs.com/banyouxia/p/11774259.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!