本文章向大家介绍npm使用淘宝镜像,主要内容包括设置成淘宝镜像、config命令设定、使用cnpm、还原。

设置成淘宝镜像

修改配置文件

vim ~/.npmrc

registry = https://registry.npm.taobao.org

config命令设定

npm config set registry https://registry.npm.taobao.org
npm config get registry		# 如果返回https://registry.npm.taobao.org,说明配置成功

使用cnpm

npm install -g cnpm --registry=https://registry.npm.taobao.org
cnpm install xxx

还原

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

直接使用淘宝镜像安装(不需要以上设置)

npm install --registry=https://registry.npm.taobao.org

注:建议不要直接使用 cnpm 安装依赖,会有各种诡异的 bug。