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 。

猜你喜欢

转载自blog.csdn.net/merciwen/article/details/78838384