Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to deploy an Electron app as an executable or installable in Windows?

I want to generate a unique .exe file to execute the app or a .msi to install the application. How to do that?

like image 683
Amirado Avatar asked Jul 08 '15 08:07

Amirado


People also ask

How do you make an Electron app executable?

Create the Electron based Syncfusion Application as mentioned in this link. Then package the application using Electron Packager, once packing completed JS_Electron-win32-ia32 folder will be created with Electron package file.

How do I distribute the Electron app in Windows?

To distribute your app manually, you need to download Electron's prebuilt binaries. Next, the folder containing your app should be named app and placed in Electron's resources directory as shown in the following examples. The location of Electron's prebuilt binaries is indicated with electron/ in the examples below.


1 Answers

You can package your program using electron-packager and then build a single setup EXE file using InnoSetup.

like image 106
Alex Warren Avatar answered Sep 23 '22 09:09

Alex Warren