A minimalist template for building Electron apps with React.
If you are looking for something more complex, then check out electron-react-boilerplate.
$ npm installRun in production mode:
$ npm startRun in development mode:
$ npm run devDirectory 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
        └── ...