nrm管理npm registry

nrm管理npm registry

nrm用途

快速查看和切换npm源的管理工具

安装

npm install -g nrm

~/work/demo(master*) » nrm help                                                                   
Options:
  -V, --version                           output the version number
  -h, --help                              output usage information

Commands:
  ls                                      List all the registries
  current                                 Show current registry name
  use                           Change registry to registry
  add   [home]             Add one custom registry
  set-auth   [always]    Set authorize information for a custom registry
  set-email              Set email for a custom registry
  set-hosted-repo        Set hosted npm repository for a custom registry to publish packages
  del                           Delete one custom registry
  home  [browser]               Open the homepage of registry with optional browser
  publish [options] [|]  Publish package to current registry if current registry is a custom registry.
   if you're not using custom registry, this command will run npm publish directly
  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/
    npmMirror https://skimdb.npmjs.com/registry/
    edunpm - http://registry.enpmjs.org/

切换源

nrm use taobao

Registry has been set to: https://registry.npm.taobao.org/

你可能感兴趣的:(nrm管理npm registry)