npm install时候,默认是去npm的官方镜像,速度很慢,下面介绍如何设置npm的淘宝镜像
一、设置npm镜像源
1、设置淘宝镜像源
npm config set registry /
2、设置官方镜像源
npm config set registry
3、查看镜像使用状态:
npm config get registry
如果返回
/
,说明配置的是淘宝镜像。如果返回
/
,说明配置的是官方镜像。
二、安装cnpm设置淘宝镜像源
1、安装cnpm
npm install -g cnpm --registry=
2、使用cnpm
cnpm install xxxx