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
- Host: GitHub
- URL: https://github.com/themiu/js_app_to_exe
- Owner: TheMIU
- Created: 2024-08-14T08:17:58.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-14T08:34:36.000Z (about 1 year ago)
- Last Synced: 2025-04-05T23:28:59.796Z (6 months ago)
- Topics: electron, executable, js
- Language: JavaScript
- Homepage:
- Size: 61.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
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.
![]()