把npm设置淘宝镜像
时间: 2023-11-23 18:55:31 浏览: 80
详解npm 配置项registry修改为淘宝镜像
5星 · 资源好评率100%
以下是两种将npm设置为淘宝镜像的方法:
1. 通过命令行设置淘宝镜像:
```bash
npm config set registry https://registry.npm.taobao.org
```
2. 通过安装cnpm来使用淘宝镜像:
```bash
npm install -g cnpm --registry=https://registry.npm.taobao.org
```
阅读全文