解决npm install安装慢的问题

  • Post author:
  • Post category:其他


解决npm install安装慢的问题


国外镜像安装东西会很慢,可以修改配置切换国内镜像

用 get命令查看registry

npm congfig get registry

结果为

http://registry.npmjs.org

用set命令换成阿里的镜像就可以了

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

再执行命令

npm install

或者直接执行

npm install --registry=https://registry.npm.taobao.org



版权声明:本文为weixin_46497863原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。