This is a minimal Electron application based on the Quick Start Guide within the Electron documentation.
A basic Electron application needs just these files:
package.json- Points to the app's main file and lists its details and dependencies.main.js- Starts the app and creates a browser window to render HTML. This is the app's main process.index.html- A web page to render. This is the app's renderer process.
To run this program yoy will need Git and Node.js (which comes with npm) Open a git-bash console in the project dir and run the following commands:
# Install dependencies
npm install
# Run the app
npm startTo create an exe to package the app, run:
npm run make