npm 源地址

1. 查看当前地址

npm config get registry
npm config get disturl

2. 设置当前地址(设置为淘宝镜像)

npm config set registry http://registry.npm.taobao.org/

3. 设置当前地址(设置为默认地址)

npm config set registry https://registry.npmjs.org/

4. 每次执行命令前加入–registry指定仓库路径

npm --registry https://registry.npm.taobao.org install

5. 使用nrm工具切换淘宝源

npx nrm use taobao

6.如果之后需要切换回官方源可使用

npx nrm use npm