https://github.com/a7ul/electron-react-boilerplate
An electron / web app boiler plate with hot reload and packaging support
https://github.com/a7ul/electron-react-boilerplate
boilerplate electron openlibrary react
Last synced: about 1 month ago
JSON representation
An electron / web app boiler plate with hot reload and packaging support
- Host: GitHub
- URL: https://github.com/a7ul/electron-react-boilerplate
- Owner: a7ul
- Created: 2016-07-30T12:27:45.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-07-30T12:32:45.000Z (almost 10 years ago)
- Last Synced: 2025-02-26T16:24:45.342Z (over 1 year ago)
- Topics: boilerplate, electron, openlibrary, react
- Language: JavaScript
- Size: 21.5 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# electron-react-boilerplate
An electron / web app boiler plate with hot reload and packaging support
Features:
---------
1.Has Live reload
2.Packaging for Windows and Mac
3.React/Redux ready
Steps:
------
1. npm install
2. npm start
npm scripts:
============
```json
"build": "runs the app in electron after webpack bundling",
"build-web": "runs the app in browser after webpack bundling",
"start": "runs the app in dev mode and in electron with hot reload using localhost:8080 of webpack-dev-server",
"start-web": "runs the app in dev mode and in browser with hot reload",
"package-win": "bundles app in production mode and builds win app with all code bundled",
"package-darwin": "bundles app in production mode and builds mac app with all code bundled"
```
=======