nrm的使用

开发的npm registry 管理工具 nrm, 能够查看和切换当前使用的registry(这里是为了电脑能够更快的切换和更快的下载)

如何安装

$ npm install -g nrm

例子

$ nrm ls

* npm ---- https://registry.npmjs.org/
  cnpm --- http://r.cnpmjs.org/
  eu ----- http://registry.npmjs.eu/
  au ----- http://registry.npmjs.org.au/
  sl ----- http://npm.strongloop.com/
  nj ----- https://registry.nodejitsu.com/
$ nrm use cnpm //switch registry to cnpm

    Registry has been set to: http://r.cnpmjs.org/

命令

nrm help // show help
nrm list // show all registries
nrm use cnpm // switch to cnpm
nrm home // go to a registry home page

仓库类型

  • npm
  • cnpm
  • strongloop
  • european
  • australia
  • nodejitsu

你可能感兴趣的:(nrm的使用)