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

https://github.com/drillprop/ts-electron-react-starter

Basic template to creating electron app with react and typescript
https://github.com/drillprop/ts-electron-react-starter

Last synced: 6 months ago
JSON representation

Basic template to creating electron app with react and typescript

Awesome Lists containing this project

README

          

# ts-electron-react-starter

### How to start a project?

1. Clone this repo
2. Install dependencies for main process

```sh
# from root directory
cd main/ && npm i
```

3. Install dependencies for renderer process

```sh
# from root directory
cd renderer/ && npm i
```

4. Run in development mode

- Start main process

```sh
# from root directory
cd main/ && npm start
```

- Start renderer process

```sh
# from root directory
cd renderer/ && npm start
```

5. Have fun :)