nrm or cnpm

作者: 侯工 | 来源:发表于2019-05-11 15:19 被阅读0次

    由于网络原因,npm 在国内使用比较慢,建议切换 npm 源到国内镜像。

    有两种比较方便的方式切换您的 npm 源:

    1. 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
    

    2. cnpm

    安装:

    npm install -g cnpm --registry=https://registry.npm.taobao.org
    

    相关文章

      网友评论

        本文标题:nrm or cnpm

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