设置npm淘宝镜像
时间: 2023-07-22 13:13:29 浏览: 132
npm配置国内镜像资源+淘宝镜像的方法
要设置npm淘宝镜像,可以使用以下命令:
```
npm config set registry https://registry.npm.taobao.org/
```
这会将npm的registry设置为淘宝镜像。如果需要恢复默认的npm registry,可以使用以下命令:
```
npm config set registry https://registry.npmjs.org/
```
阅读全文