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

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.

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