如何切换npm源为淘宝镜像源?
时间: 2024-01-30 09:12:10 浏览: 388
npm配置国内镜像资源+淘宝镜像的方法
你可以通过以下两种方法来切换npm源为淘宝镜像源:
1. 使用npm命令行工具进行配置:
```shell
npm config set registry https://registry.npm.taobao.org
```
2. 使用nrm工具进行管理和切换:
首先,安装nrm工具:
```shell
npm install nrm -g
```
然后,使用nrm工具切换为淘宝源:
```shell
npx nrm use taobao
```
阅读全文