CNPM

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

切换回npm原始地址

npm config set registry https://registry.npmjs.org/
posted @ 2020-05-04 11:48  LucasLin  阅读(439)  评论(0编辑  收藏  举报