https://github.com/keitap/electron-ts-webpack
Pretty much minimum Electron + TypeScript + React + webpack boilerplate. Period.
https://github.com/keitap/electron-ts-webpack
electron react typescript webpack
Last synced: 4 months ago
JSON representation
Pretty much minimum Electron + TypeScript + React + webpack boilerplate. Period.
- Host: GitHub
- URL: https://github.com/keitap/electron-ts-webpack
- Owner: keitap
- Created: 2019-06-23T09:45:12.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-05-06T03:13:01.000Z (about 3 years ago)
- Last Synced: 2024-05-29T19:05:05.395Z (about 2 years ago)
- Topics: electron, react, typescript, webpack
- Language: TypeScript
- Homepage:
- Size: 1.01 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pretty much minimum Electron + TypeScript + React + webpack boilerplate. Period.
This boilerplate is based on [electron-webpack-quick-start](https://github.com/electron-userland/electron-webpack-quick-start).
## What's the point?
* Live reload for both `renderer` and `main` processes so you can develop-and-check really fast iteratively.
* Use of [`electron-builder`](https://github.com/electron-userland/electron-builder) to package and build a distributable electron application.
* Use of npm instead of yarn.
## Development Scripts
```bash
# run application in development mode
npm run dev
# compile source code and create webpack output
npm run compile
# `npm run compile` & create build with electron-builder
npm dist
# `npm run compile` & create unpacked build with electron-builder
npm run dist:dir
```