npm与yarn换源

作者: 还是流星拳比较好 | 来源:发表于2019-02-14 11:00 被阅读0次

    npm, yarn查看源和换源:

    // 查看npm当前镜像源
    npm config get registry

    // 设置npm镜像源为淘宝镜像
    npm config set registry https://registry.npm.taobao.org/

    // 查看yarn当前镜像源
    yarn config get registry

    // 设置yarn镜像源为淘宝镜像
    yarn config set registry https://registry.npm.taobao.org/

    镜像源地址部分如下:

    npm --- https://registry.npmjs.org/

    cnpm --- https://r.cnpmjs.org/

    taobao --- https://registry.npm.taobao.org/

    nj --- https://registry.nodejitsu.com/

    rednpm --- https://registry.mirror.cqupt.edu.cn/

    npmMirror --- https://skimdb.npmjs.com/registry/

    deunpm --- http://registry.enpmjs.org/


    这两天又发现一个更好的工具 nrm
    安装:npm install -g nrm
    运行:nrm ls (可以看见nrm现有的源)
    使用:nrm use xxx (可以切换源)
    添加私仓地址: nrm add <name> address

    相关文章

      网友评论

        本文标题:npm与yarn换源

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