美文网首页
npm 更改淘宝镜像源方法

npm 更改淘宝镜像源方法

作者: vioi | 来源:发表于2019-02-20 13:45 被阅读0次

    1.全局安装淘宝镜像源 :
    npm install -g cnpm registry=https://registry.npm.taobao.org
    通过cnpm 指令代替 npm

    2.配置一下npm的registray地址:
    npm config set registry https://registry.npm.taobao.org
    验证是否更改成功:
    npm config get registry
    会直接打印淘宝镜像的地址:https:registry.npm.taobao.org
    使用npm 指令的镜像源也是淘宝镜像, 此方法不用cnpm指令

    3.通过全局安装nrm :
    npm install -g nrm
    输出不同的镜像源:
    nrm ls
    切换淘宝镜像源:
    nrm use taobao

    相关文章

      网友评论

          本文标题:npm 更改淘宝镜像源方法

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