https://github.com/thavixt/electron-react-hot-ts-boilerplate
Electron React App with Typescript and Hot Reload
https://github.com/thavixt/electron-react-hot-ts-boilerplate
Last synced: 12 months ago
JSON representation
Electron React App with Typescript and Hot Reload
- Host: GitHub
- URL: https://github.com/thavixt/electron-react-hot-ts-boilerplate
- Owner: thavixt
- Created: 2020-05-01T12:12:55.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T17:42:59.000Z (over 3 years ago)
- Last Synced: 2025-03-17T13:24:42.681Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 390 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# electron-react-hot-ts-boilerplate
Live Editing Environment for Electron Apps using React, React-Hot-Loader, Typescript and Webpack
Based on https://github.com/quantumkv/electron-react-hot-ts-boilerplate
## Installation
```
npm install
```
## Usage
### Development with hot reloading
```
npm run server // compile main and start the hot reloading server
npm run devstart // to open electron in devmode with hmr.
```
### Compiling the files for distribution
```
npm run build // to compile the files without hot reloading into dist/
npm run start // to run electron with compiled files
```