npm更改为淘宝镜像
时间: 2023-10-13 14:07:59 浏览: 152
详解npm 配置项registry修改为淘宝镜像
更改npm为淘宝镜像的方法有多种。可以使用以下方法之一来更改npm的registry地址:
1. 临时使用淘宝镜像:
```
npm --registry https://registry.npm.taobao.org install express
```
2. 永久使用淘宝镜像:
```
npm config set registry https://registry.npm.taobao.org
```
配置后可以通过以下方式验证是否成功:
```
npm config get registry
```
或
```
npm info express
```
3. 使用cnpm来安装:
首先安装cnpm:
```
npm install -g cnpm --registry=https://registry.npm.taobao.org
```
然后使用cnpm来代替npm进行安装:
```
cnpm install express
```
如果想恢复原来的npm仓库地址,只需将registry地址配置为npm官方镜像即可:
```
npm config set registry https://registry.npmjs.org/
```
阅读全文