执行npm install时,出现以下错误:
原因:访问https://registry.npmjs.org需要翻墙才能访问,所以国内经常会出现连接超时等问题。
解决:将npm的源设置为国内的镜像,例如淘宝镜像
以下是设置淘宝镜像的方法:
npm config set registry http://registry.npmmirror.com
npm config get registry
//尝试重新执行,应该就能够成功安装了
npm install
//另外,如果不想全局设置 npm 的镜像源,也可以在执行 npm install 命令时指定镜像源,例如:
npm install --registry=https://registry.npmmirror.com