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