ElecflowTemplate is a quick start Electron template for building cross-platform desktop applications with JavaScript.
- Install dependencies
yarn
- Run the app in development mode
yarn start
To build the app for distribution (requires electron-packager or similar):
yarn build(Adjust this command if you use a different packager or script.)
src/– Main source files (HTML, JS, CSS)main.js– Electron main process entrypackage.json– Project metadata and scriptsbuild/– Icons, installer scripts, and assets
- Edit
src/index.html,src/renderer.js, andsrc/styles.cssto change the UI. - Modify
main.jsfor main process logic.