https://github.com/ruanyl/electron-react-boilerplate
https://github.com/ruanyl/electron-react-boilerplate
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ruanyl/electron-react-boilerplate
- Owner: ruanyl
- Created: 2020-07-01T22:08:09.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-11-10T14:19:02.000Z (over 2 years ago)
- Last Synced: 2025-02-15T02:45:56.319Z (5 months ago)
- Language: JavaScript
- Size: 2.02 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Electron React Boilerplate with Reapex
## Install
First, clone the repo via git and install dependencies:
```bash
git clone https://github.com/ruanyl/electron-react-boilerplate.git
cd your-project-name
yarn
```## Starting Development
Start the app in the `dev` environment. This starts the renderer process in [**hot-module-replacement**](https://webpack.js.org/guides/hmr-react/) mode and starts a webpack dev server that sends hot updates to the renderer process:
```bash
yarn dev
```## Packaging for Production
To package apps for the local platform:
```bash
yarn package
```