An open API service indexing awesome lists of open source software.

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

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
```