A minimalist template for building Electron apps with React.
If you are looking for something more complex, then check out electron-react-boilerplate.
$ npm install
Run in production mode:
$ npm start
Run in development mode:
$ npm run dev
Directory structure:
.
├── ...
├── main.js # initiates electron
└── app # app directory
├── index.html # entry html file
├── main.js # entry javascript file
├── components # react components
└── ...
└── build # compiled files from webpack
└── ...