VScode解决 npm install 报错 connect ECONNREFUSED 问题
更改npm registry
默认情况下,npm使用https://registry.npmjs.org作为其registry。您可以尝试切换到其他registry,例如淘宝的npm镜像(https://registry.npmmirror.com)。要更改registry,请在终端或命令提示符中运行以下命令:
npm config set registry
将替换为您想要使用的registry地址。例如,如果您想使用淘宝的npm镜像,可以将命令更改为:
npm config set registry https://registry.npmmirror.com
更改registry后,重新运行npm install命令以安装依赖项。