https://github.com/remarkablemark/electron-react-template
A minimalist template for building Electron apps with React.
https://github.com/remarkablemark/electron-react-template
electron electron-react-template react template
Last synced: 2 months ago
JSON representation
A minimalist template for building Electron apps with React.
- Host: GitHub
- URL: https://github.com/remarkablemark/electron-react-template
- Owner: remarkablemark
- License: mit
- Archived: true
- Created: 2016-04-30T06:58:40.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2018-02-11T15:24:29.000Z (over 7 years ago)
- Last Synced: 2025-03-24T07:56:59.616Z (3 months ago)
- Topics: electron, electron-react-template, react, template
- Language: JavaScript
- Size: 10.7 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# electron-react-template
A minimalist template for building [Electron](https://github.com/electron/electron) apps with [React](https://github.com/facebook/react).
If you are looking for something more complex, then check out [electron-react-boilerplate](https://github.com/chentsulin/electron-react-boilerplate).
## Install
```sh
$ npm install
```## Run
Run in production mode:
```sh
$ npm start
```Run in development mode:
```sh
$ 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
└── ...
```## License
[MIT](https://github.com/remarkablemark/electron-react-template/blob/master/LICENSE)