一个简单、快速、功能丰富的跨平台桌面软件开发框架。
下载
# gitee
git clone https://gitee.com/wallace5303/electron-egg.git
# github
git clone https://github.com/wallace5303/electron-egg.git
安装
# 进入目录 ./electron-egg/
# 提升安装速度,使用国内镜像
npm config set registry https://registry.npm.taobao.org
npm install
常用命令
# 开发者模式
npm run dev
# 生产者模式
npm run start
# 打包-windows版本
npm run build-w
# 打包-mac版本
npm run build-m
# 打包-linux版本
npm run build-l
# web运行-开发模式
npm run web-dev
# web运行-生产者模式-启动
npm run web-start
# web运行-生产者模式-停止
npm run web-stop