美文网首页
npm 源随意切换

npm 源随意切换

作者: HelloJames | 来源:发表于2018-01-05 22:49 被阅读27次

    使用npm安装时, 更多的喜欢使用淘宝镜像为进行npm安装, 但有时还是需要用切换npm源的.

    如果是这类的需求, 可以试试nrm

    安装

    npm install -g nrm

    使用

    $ nrm ls
     
    * npm -----  https://registry.npmjs.org/
      cnpm ----  http://r.cnpmjs.org/
      taobao --  https://registry.npm.taobao.org/
      nj ------  https://registry.nodejitsu.com/
      rednpm -- http://registry.mirror.cqupt.edu.cn
      skimdb -- https://skimdb.npmjs.com/registry
    
    $ nrm use taobao                    // 已经切换到淘宝源
    $ npm install -g reactweb-cli       // 安装插件
    $ nrm use npm                       // 再切换加npm源
    

    相关文章

      网友评论

          本文标题:npm 源随意切换

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