设置npm源为淘宝镜像

因为有些包需要或者是境外的服务器,所以使用常规的npm 安装方式有可能安装很慢或者安装失败,所以淘宝就帮我们把一些需要的包同步到了国内服务器,所以使用淘宝镜像安装速度会很快。
有几种方式:
一、只是临时使用

npm install --registry=https://registry.npm.taobao.org //(多个包安装)npm --registry https://registry.npm.taobao.org install express //(单个包安装,express为某个具体包名)

某个具体的包
二、使用cnpm 代替 npm 安装
cnpm是阿里默认安装包的工具,平时使用npm install的方式改为cnpm install即可
1、首先安装cnpm
$ npm install -g cnpm --registry=https://registry.npm.taobao.org

2、检测cnpm版本,如果安装成功可以看到cnpm的基本信息。
cnpm -v

3、以后安装插件只需要使用cnpm intall即可
三、通过更改npm默认下载源的方式
假如不想更改为cnpm的方式,可以采用修改npm配置的形式
npm config set registry https://registry.npm.taobao.org/

【设置npm源为淘宝镜像】检查是否修改成功
npm config get registry

四、恢复为默认的npm下载方式
npm config set registry https://registry.npmjs.org/

    推荐阅读