An open API service indexing awesome lists of open source software.

https://github.com/themiu/js_app_to_exe

Simple JavaScript GUI Application (.exe) test using Electron
https://github.com/themiu/js_app_to_exe

electron executable js

Last synced: 6 months ago
JSON representation

Simple JavaScript GUI Application (.exe) test using Electron

Awesome Lists containing this project

README

          

## Create JavaScript GUI Application (.exe) using Electron

No need to run `npm install` just,

1. install the electron-packager:
```bash
npm install electron-packager
```
2. package the app:
```bash
electron-packager . electron-app --platform=win32 --arch=x64 --out=dist --overwrite
```
### Running the Application
Double-click the .exe file in the dist directory to launch the GUI application.