CNPM

Posted uakora

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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

以上是关于CNPM的主要内容,如果未能解决你的问题,请参考以下文章

从NPM到CNPM

cnpm命令无任何反应的解决办法

cnpm安装淘宝镜像

如何使用NPM?CNPM又是什么?

关于cnpm的一点小bug

Vue项目的使用