nrm切換npm 神器

前言

使用node 經常需要切換 npm 的源。nrm 可以方便的切換 不同的源。

安裝

npm install -g nrm

命令

npm  --help

 Usage: nrm [options] [command]
 Options:
    -V, --version  output the version number
    -h, --help     output usage information
 Commands:
    ls                           List all the registries
    current                      Show current registry name
    use <registry>               Change registry to registry
    add <registry> <url> [home]  Add one custom registry
    del <registry>               Delete one custom registry
    home <registry> [browser]    Open the homepage of registry with optional browser
    test [registry]              Show response time for specific or all registries
    help                         Print this help

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 use taobao 切換源到淘寶鏡像

nrm test taobao 測試淘寶的源速度

npm ---- 347ms
taobao - 312ms

nrm add 添加源
nrm delete 刪除源

可以方便管理自己的npm 。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章