使用 nrm 管理鏡像源

  • 獲取當前使用的鏡像源
npm config get registry
https://registry.npmjs.org/
  • 使用指定的鏡像源
npm config set registry https://registry.npm.taobao.org/
  • 使用 npm config 命令來更改鏡像源太麻煩, 咱們使用 nrm 來幫咱們管理多個鏡源
npm i nrm -g
nrm -V
1.2.1
  • nrm 展現當前可用源
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/

nrm 列出了當前可切換使用的源, 左邊帶星號的表示當前正在使用的源。node

  • 使用列表中的源
nrm use nj
Registry has been set to: https://registry.nodejitsu.com/
  • nrm 還能夠用來測試鏡像源的延遲
nrm test yarn
cnpm --- 208ms

nrm test taobao
taobao - 102ms
相關文章
相關標籤/搜索