1.说明

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

2.全局设置

查看当前源

npm config get registry

设置为淘宝源

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

3.临时使用

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

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

4.使用cnpm

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

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

5.使用nrm

npm install -g nrm
nrm use taobao
nrm ls  # 查看当前可用源命令

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐