下面简单介绍一下NPM淘宝镜像使用:
淘宝镜像地址为: https://registry.npm.taobao.org
一般使用以下命令全局安装 cnpm
:
npm install -g cnpm --registry=https://registry.npm.taobao.org
也可以在安装项目依赖时直接使用淘宝镜像:
npm install --registry=https://registry.npm.taobao.org # 安装当前项目依赖
或者在项目根目录新增 .npmrc
配置文件,修改项目使用淘宝镜像,这样比较适合团队协作:
.npmrc
registry=https://registry.npm.taobao.org