常见的npm镜像源
官方源
URL: https://registry.npmjs.org
淘宝镜像源(npmmirror)
URL: https://registry.npmmirror.com
其他常用镜像源
URL: https://registry.cnpmjs.org (CNPM)这里是引用
切换npm镜像源
切换到官方源
npm config set registry https://registry.npmjs.org
切换到淘宝镜像源
npm config set registry https://registry.npmmirror.com
检查并更新npm配置
npm cache clean --force
然后尝试重新安装依赖:
npm install