CNPM,淘宝 NPM 镜像,同步官方版本频率为10分钟一次
cnpm的两种使用方式:
- 切换到淘宝镜像源
- 安装 cnpm,然后用 cnpm 代替 npm
切换到淘宝镜像源
设置
npm config set registry https://registry.npm.taobao.org
验证
npm config get registry (返回:https://registry.npm.taobao.org)
使用
npm install xxx
安装cnpm
全局安装cnpm
npm install -g cnpm --registry=https://registry.npm.taobao.org
验证
cnmp config get registry (返回:https://r.npm.taobao.org/)
使用
cnpm install xxx