Skip to content

一、nrm

1. 什么是nrm

全称:npm registry manage nrm是一个npm源管理工具,使用它可以快速切换npm源。

2. 安装

shell
// 全局安装
npm install -g nrm

3. 具体用法

shell
// 直接使用--help 
nrm --help

输出:

shell
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
  set-auth [options] <registry> [value]   Set authorize information for a custom registry with a base64 encoded string or username and pasword
  set-email <registry> <value>            Set email for a custom registry
  set-hosted-repo <registry> <value>      Set hosted npm repository for a custom registry to publish packages
  del <registry>                          Delete one custom registry
  home <registry> [browser]               Open the homepage of registry with optional browser
  publish [options] [<tarball>|<folder>]  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

顺序往下看:

shell
# 注意:命令中凡是<>表示必须有,[]表示可选
# 查看版本
nrm -V 或者 nrm --version
# 列出所有源 有*号的表示当前正在使用的源
nrm ls
# 查看当前源
nrm current
# 切换源
nrm use xxx
# 添加一个源,一般是自己公司的私有源等 其中registry为源的别名 url为私有源的请求路径 home为源的主页
nrm add <registry> <url> [home]
# 使用base64编码的字符串或用户名和密码设置自定义镜像源的授权信息。
nrm set-auth [options] <registry> [value]
# 设置自定义镜像源的邮箱。
nrm set-email <registry> <value>
# 设置发布到自定义源的npm托管仓储
nrm set-hosted-repo <registry> <value>
# 删除一个自定义镜像源,不能删除nrm自带的。删除成功,会有提示delete registry n success。
# registry为对应源的名称
nrm del <registry>
# 浏览器中打开源首页
nrm home xxx
# 如果当前镜像源是自定义镜像源,则将包发布到当前镜像源。
# 如果您没有使用自定义镜像源,则此命令将直接运行npm publish。
nrm publish [options] [<tarball>|<folder>]
# 测试源的访问速度。不加registry时,测试所有的。
nrm test xxx

Released under the MIT License.