开始使用

准备

下载

  1. # gitee
  2. git clone https://gitee.com/wallace5303/electron-egg.git
  3. # github
  4. git clone https://github.com/wallace5303/electron-egg.git

安装

  1. # 设置国内镜像源(加速)
  2. npm config set registry=https://registry.npmmirror.com
  3. npm config set disturl=https://registry.npmmirror.com/-/binary/node
  4. #如果下载electron慢,配置如下(或者挂个VPN)
  5. npm config set electron_mirror=https://registry.npmmirror.com/-/binary/electron/
  6. # 进入目录 ./electron-egg/
  7. npm install
  8. # 如果还是提示 electron 没安装,进入 node_modules/electron 目录下,再npm install
  9. # 构建sqlite
  10. # - 需要 python3 环境 (操作系统自带)
  11. # - 需要 node-gyp
  12. npm i node-gyp -g
  13. npm run re-sqlite
  14. # 如果sqlite报错 ...tools之类的
  15. npm --vs2015 i -g --production windows-build-tools
  16. 或者
  17. npm i -g --production windows-build-tools

注:常见问题

常用命令

  1. # 开发者模式
  2. # 1:【进入前端目录】,启动前端服务
  3. cd electron-egg/frontend && npm install && npm run serve
  4. # 2:【根目录】,启动后端服务
  5. npm run dev
  6. # 开发模式(主进程)
  7. npm run dev
  8. # 开发模式-热加载(主进程)
  9. npm run reload
  10. # 预发布模式(环境变量为:prod)
  11. npm run start
  12. # 打包 (windows版)
  13. npm run build-w (32位)
  14. npm run build-w-64 (64位)
  15. npm run build-w-arm64 (arm64)
  16. # 打包 (windows 免安装版)
  17. # ee > v2.2.1
  18. npm run build-wz (32位)
  19. npm run build-wz-64 (64位)
  20. npm run build-wz-arm64 (arm64)
  21. # 打包 (mac版)
  22. npm run build-m
  23. npm run build-m-arm64 (m1芯片架构)
  24. # 打包 (linux版)
  25. # ee > v2.2.1
  26. npm run build-l (32 deb包)
  27. npm run build-l-64 (64 deb包)
  28. npm run build-l-arm64 (64 deb arm64)
  29. npm run build-l-armv7l (64 deb armv7l)
  30. npm run build-lr-64 (64 rpm包)
  31. npm run build-lp-64 (64 pacman包)
  32. # 移动前端静态资源
  33. npm run rd
  34. # 代码加密
  35. npm run encrypt