查看当前使用的镜像源
npm config get registry --location=global
设置使用官方源
npm config set registry https://registry.npmjs.org/ --location=global
设置淘宝镜像源
npm config set registry https://registry.npm.taobao.org/ --location=global
需要更改淘宝镜像源地址:
npm config set registry https://registry.npmmirror.com --location=global
设置其他镜像源
npm config set registry <镜像源地址> --location=global
nvm安装node18版本报错
nvm install 18
Could not retrieve https://npm.taobao.org/mirrors/node/latest-v18.x/SHASUMS256.txt.
排查得知,是需要修改一下淘宝镜像源(原地址:使用nvm报错https://npm.taobao.org/mirrors/node/index.json 淘宝镜像更换-CSDN博客)
因为淘宝的镜像域名更换,由于npm.taobao.org域名HTTPS证书到期更换为npmmirror.com,那么就会导致之前使用该镜像域名下载依赖的安装包会出现问题
1、先找到nvm配置文件,修改镜像源地址
2、再重新设置淘宝镜像源的地址
npm config set registry https://registry.npmmirror.com
3、重新安装