美文网首页
修改npm源

修改npm源

作者: 青争小台 | 来源:发表于2022-07-10 10:29 被阅读0次
    1. 临时使用
      在 npm install XXX 时加入--registry URL即可,不会影响到本地配置,如:
    npm --registry https://registry.npm.taobao.org install express
    
    1. 持久使用
      永久修改本地npm的配置:
    npm config set registry https://registry.npm.taobao.org
    
    1. 其他命令
      查看npm源地址有没有换成功:
    npm config get registry
    

    4.重置为官方源:

    npm config set registry https://registry.npmjs.org/
    

    来自:https://www.jianshu.com/p/8e3643e3307a

    相关文章

      网友评论

          本文标题:修改npm源

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