Electron下载速度慢的解决办法

方法
NPM 在在项目内安装包先去查询全局是否安装该包,没有就会去网上下载,只要在全局环境下有 Electron 包,就不会去网上下载。

具体操作

  1. 先安装淘宝镜像的包命令行管理工具cnpm
npm install cnpm -g --registry=http://registry.npm.taobao.org

# 建议不要用 cnpm 安装 会有各种诡异的bug 可以通过如下操作解决 npm 下载速度慢的问题
npm install --registry=https://registry.npm.taobao.org

  1. 用 cnpm 全局安装 electron 或者直接第三步
cnpm install electron -g
  1. 在项目目录下执行 npm install 就不需要从网上下载 electron 包了
npm install

你可能感兴趣的:(Electron下载速度慢的解决办法)