当前位置:   article > 正文

NODE_npm设置国内源(淘宝镜像源)的几种方式,解决下载速度慢的问题_国内node元

国内node元

1.说明

刚安装的npm使用默认的源会感觉特别特别慢,所以,非常有必要使用国内的源,比如说众所周知的淘宝镜像

2.全局设置

查看当前源

npm config get registry
  • 1

设置为淘宝源

npm config set registry https://registry.npm.taobao.org
# 还原默认源:npm config set registry https://registry.npmjs.org/
  • 1
  • 2

3.临时使用
上面那种设置是全局的,以后每次都会自动读取已经设置好的源,如果只是一次性使用,可以使用下面的命令

npm --registry https://registry.npm.taobao.org install XXX(模块名)
  • 1

4.使用cnpm
cnpm是一个命令,用它来代替npm

npm install -g cnpm --registry=https://registry.npm.taobao.org
cnpm install XXX(模块名)
  • 1
  • 2

5.使用nrm

npm install -g nrm
nrm use taobao
nrm ls  # 查看当前可用源命令
  • 1
  • 2
  • 3
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/212358
推荐阅读
相关标签
  

闽ICP备14008679号