美文网首页
npm使用国内淘宝镜像

npm使用国内淘宝镜像

作者: 上杉丶零 | 来源:发表于2021-04-29 10:20 被阅读0次
    1. 临时使用
      npm --registry https://registry.npm.taobao.org install express
    2. 永久使用
      npm config set registry https://registry.npm.taobao.org
      通过如下命令可以查看是否配置成功
      npm config get registry
      npm info express
      
      如果需要恢复成原来的官方地址只需要执行如下命令
      npm config set registry https://registry.npmjs.org
    3. 使用cnpm
      安装淘宝的cnpm,然后在使用时直接将npm命令替换成cnpm命令即可
      npm install -g cnpm --registry=https://registry.npm.taobao.org
      然后安装时使用如下命令
      cnpm install express

    相关文章

      网友评论

          本文标题:npm使用国内淘宝镜像

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