Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brunomart97/electron-react-boilerplate
Template for Electron projects with React
https://github.com/brunomart97/electron-react-boilerplate
Last synced: about 4 hours ago
JSON representation
Template for Electron projects with React
- Host: GitHub
- URL: https://github.com/brunomart97/electron-react-boilerplate
- Owner: brunomart97
- Created: 2024-03-09T19:39:36.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2024-03-10T12:05:32.000Z (8 months ago)
- Last Synced: 2024-05-01T17:57:30.436Z (7 months ago)
- Language: JavaScript
- Size: 220 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Getting Started
### Dependencies
Install the dependencies
```shell
npm install
```### Development environment
Running the project
In a terminal, run react:
```shell
npm run react
```In another terminal, run electron:
```shell
npm run electron
```### Build the project
First, run the react build:
```shell
npm run build-react
```Then, run the electron build for the chosen operational system:
Windows:
```shell
npm run build-electron-win
```Mac:
```shell
npm run build-electron-mac
```Linux:
```shell
npm run build-electron-linux
```