Electron 一条命令打包成Windows平台安装包解决方案
发布于 14 小时前 作者 Qquanwei 101 次浏览 来自 分享

你是否还在用:

  • electron-winstaller
  • electron-packager

每次打包都是各种命令来一遍 或者你想使用inno-setup而不得不在’linux/osx’上编译出exe再切换到虚拟机上用inno-setup重新打包一遍 或者你在用electron自带的electron.autoUpdater 而不得不忍受着它非常繁琐的发包方式

为了解决以上问题,为了能够仅仅一个命令就能直接将你的源码 生成 一个inno-setup 方式的安装包

** electron-windows-inno-installer ** 诞生了 地址: (https://github.com/Qquanwei/electron-windows-inno-installer)

有了它,你在生成installer.exe的时候仅仅需要执行一条命令 electron-windows-inno-installer mysetup.iss --icon ./favicon.ico --platform win32-x64

electron-windows-inno-installer 将极大方便用户的 打包,更新,发包 而且无需考虑中间环节,其使用的electron版本目前也在保持与electron最新版尽量同步更新。

(为了能够让它更好用,欢迎push : https://github.com/Qquanwei/electron-windows-inno-installer )

回到顶部