美文网首页
3. 如何管理本地多个npm镜像源

3. 如何管理本地多个npm镜像源

作者: 我的昵称好听吗 | 来源:发表于2024-04-15 18:48 被阅读0次

    使用nrm管理镜像:
    全局安装:

    npm install nrm -g --save
    

    用nrm ls命令查看默认配置

    nrm ls
     
    输出:
      npm -------- https://registry.npmjs.org/
      yarn ------- https://registry.yarnpkg.com/
      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 current
    

    切换源

    nrm use cnpm
    
    

    用nrm add 命令添加公司私有npm源

    nrm add xxxx https://xxxx.xx.xx.com/
    

    测试下速度

    nrm test npm
    
    image.png

    相关文章

      网友评论

          本文标题:3. 如何管理本地多个npm镜像源

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