做个有深度的程序员 — YuanGe
npm淘宝镜像新域名换源切换以及遇到的相关问题
npm淘宝镜像新域名换源切换以及遇到的相关问题

npm淘宝镜像新域名换源切换以及遇到的相关问题

2022年05月31起老的淘宝镜像将无法使用需要换源

npm config get registry

若返回 “https://registry.npm.taobao.org/“,说明配置的是淘宝镜像;
如果返回 “https://registry.npmjs.org/“,说明配置的是官方镜像。

npm cache clean --force

清除后,如果你有代理的话可以不需要设置镜像源

npm config set registry https://registry.npmmirror.com
-->