切换镜像
腾讯镜像
npm config set registry https://mirrors.cloud.tencent.com/npm/
淘宝镜像(旧版)
npm config set registry https://registry.npmjs.org/
(新版)
npm config set registry https://registry.npmmirror.com
官方镜像
npm config set registry https://registry.npmjs.org/
清楚缓存:如果之前使用过其他的npm镜像源,可能还需要清除缓存。
npm cache clean --force
检查镜像环境
npm config get registry
删除依赖
Remove-Item -Recurse -Force node_modules
rm -rf node_modules