设置npm的淘宝镜像
时间: 2023-11-08 15:02:58 浏览: 89
npm配置国内镜像资源+淘宝镜像的方法
要设置npm的淘宝镜像,可以执行以下命令:
```
npm config set registry https://registry.npm.taobao.org/
```
这将把npm的registry配置为淘宝镜像。如果你希望还原为官方镜像,可以执行以下命令:
```
npm config set registry https://registry.npmjs.org/
```
阅读全文