npm 设置为淘宝镜像
时间: 2024-01-29 10:10:40 浏览: 247
npm配置国内镜像资源+淘宝镜像的方法
你可以使用以下命令将npm设置为淘宝镜像:
```shell
npm config set registry https://registry.npm.taobao.org
```
这将把npm的镜像源设置为淘宝镜像。这样做可以加快npm包的下载速度,特别是对于中国用户来说。
如果你想要切换回原来的国外镜像,可以使用以下命令:
```shell
npm config set registry https://registry.npmjs.org/
```
这将把npm的镜像源设置为原来的国外镜像。
阅读全文