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
- Host: GitHub
- URL: https://github.com/drillprop/ts-electron-react-starter
- Owner: drillprop
- Created: 2020-08-04T10:20:36.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T23:14:11.000Z (over 3 years ago)
- Last Synced: 2025-04-10T05:42:09.659Z (about 1 year ago)
- Language: HTML
- Homepage:
- Size: 3.08 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 27
-
Metadata Files:
- Readme: README.md
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 :)