美文网首页
nrm切换npm源利器

nrm切换npm源利器

作者: silly鸿 | 来源:发表于2017-12-15 16:48 被阅读0次

在使用npm时,官方的源下载npm包会比较慢,国内我们基本使用淘宝的源,最近公司内部搭建了一套npm私有仓库。要添加自己公司内部的npm源,公司内部的源不可能把npm官方的npm包都全量同步,故需要npm源之间的切换,如果使用npm registry xxx的话,太不好管理了。nrm是管理npm源切换的利器。使用方法如下:
安装nrm

npm install -g nrm

nrm --help



  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|rm <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

  Options:

    -h, --help     output usage information
    -V, --version  output the version number

主要使用ls和use命令
1)nrm ls是列出来现在已经配置好的所有的原地址

nrm ls
 npm ---- https://registry.npmjs.org/
* cnpm --- http://r.cnpmjs.org/
  taobao - http://registry.npm.taobao.org/
  nj ----- https://registry.nodejitsu.com/
  rednpm - http://registry.mirror.cqupt.edu.cn
  npmMirror  https://skimdb.npmjs.com/registry

2)nrm use是切换到哪个源上

nrm use npm

3)nrm add添加源
4)nrm del删除源
5)nrm test测试源的响应时间,可以作为使用哪个源的参考

原文链接:http://www.jianshu.com/p/5dd18d246281

相关文章

  • 搭建小程序开发环境

    npm慢的话,可安装nrm切换镜像源。nrm是npm的镜像源管理工具,可在 npm 源间切换npm install...

  • npm 默认源切换

    使用nrm工具切换淘宝源npx nrm use taobao 切换回官方源npx nrm use npm

  • 我的NPM 插件

    NRM(快速切换NPM源)

  • nrm切换npm源利器

    在使用npm时,官方的源下载npm包会比较慢,国内我们基本使用淘宝的源,最近公司内部搭建了一套npm私有仓库。要添...

  • nrm切换npm源利器

    在使用npm时,官方的源下载npm包会比较慢,国内我们基本使用淘宝的源,最近公司内部搭建了一套npm私有仓库。要添...

  • nvm nrm 常用命令

    nvm nrm nrm是npm源管理工具,可以添加自定义的npm源和切换npm源

  • npm 使用

    nrm切换各种源 npm install -g nrm nrm ls 查看当前使用的源nrm use taoba...

  • webpack

    全局安装 nrm: npm install nrm -g查看镜像源 nrm ls切换淘宝镜像源 nrm use t...

  • nrm的安装与配置

    一、nrm的概念 nrm是npm源管理器,允许你快速地在npm源间切换。 二、安装nrm 在终端执行,npm in...

  • nrm的安装与使用

    nrm -- NPM registry manager nrm-Github 安装 添加 列表 使用(切换源)

网友评论

      本文标题:nrm切换npm源利器

      本文链接:https://www.haomeiwen.com/subject/cjudwxtx.html