npm更换国内镜像

npm默认集成是国外的源,在国内使用国外源经常出现下载缓慢卡顿,并且由于资源下载慢可能导致中途停止,下载错误等报错。所以我们通过换国内的镜像解决此问题。

我们将介绍两次解决方案:

  • npm换成国内淘宝的镜像
npm config set registry https://registry.npm.taobao.org/
  • 安装带淘宝镜像的cnpm命令
npm install -g cnpm --registry=https://registry.npm.taobao.org

验证是否换源成功:
我们可以在终端输入命令查看npm和cnpm当前的镜像

npm config get registry
cnpm config get registry

最后,如果需要将镜像换回官方镜像需要执行如下命令:

npm config set registry https://registry.npmjs.org

你可能感兴趣的:(解决,npm,前端,node.js)