electron-vite-react/README.md

87 lines
2.9 KiB
Markdown
Raw Normal View History

2021-11-11 08:17:54 +08:00
# vite-react-electron
2021-11-06 22:27:23 +08:00
2021-11-11 08:17:54 +08:00
![GitHub stars](https://img.shields.io/github/stars/caoxiemeihao/vite-react-electron?color=fa6470&style=flat)
![GitHub issues](https://img.shields.io/github/issues/caoxiemeihao/vite-react-electron?color=d8b22d&style=flat)
![GitHub license](https://img.shields.io/github/license/caoxiemeihao/vite-react-electron?style=flat)
2021-11-07 18:10:55 +08:00
[![Required Node.JS >= v14.17.0](https://img.shields.io/static/v1?label=node&message=%3E=14.17.0&logo=node.js&color=3f893e&style=flat)](https://nodejs.org/about/releases)
2021-11-06 22:27:23 +08:00
2021-11-10 21:19:02 +08:00
**English | [简体中文](README.zh-CN.md)**
2021-11-06 22:27:23 +08:00
## Run Setup
```bash
# clone the project
2021-11-11 08:17:54 +08:00
git clone git@github.com:caoxiemeihao/vite-react-electron.git
2021-11-06 22:27:23 +08:00
# enter the project directory
2021-11-11 08:17:54 +08:00
cd vite-react-electron
2021-11-06 22:27:23 +08:00
2021-11-15 18:12:39 +08:00
# install dependency
npm install
2021-11-06 22:27:23 +08:00
# develop
2021-11-15 18:12:39 +08:00
npm run dev
2021-11-06 22:27:23 +08:00
```
2021-11-10 21:19:02 +08:00
## Directory
```tree
├── configs
├ ├── vite.main.ts Main-process config file, for -> src/main
├ ├── vite.preload.ts Preload-script config file, for -> src/preload
2021-11-11 12:46:00 +08:00
├ ├── vite.renderer.ts Renderer-script config file, for -> src/renderer
2021-11-10 21:19:02 +08:00
├── scripts
├ ├── build.mjs Build script, for -> npm run build
├ ├── electron-builder.config.mjs
├ ├── watch.mjs Develop script, for -> npm run dev
├── src
├ ├── main Main-process source code
├ ├── preload Preload-script source code
2021-11-11 12:46:00 +08:00
├ ├── renderer Renderer-process source code
2021-11-10 21:19:02 +08:00
```
2021-11-12 09:01:59 +08:00
#### `dist` and `src`
- Once `npm run dev` or `npm run build` is executed. Will be generated `dist`, it is the same as the `src` structure.
- This ensures the accuracy of path calculation.
```tree
├── dist
| ├── main
| ├── preload
| ├── renderer
├── src
| ├── main
| ├── preload
| ├── renderer
|
```
2021-11-10 21:19:02 +08:00
## How to work
2021-11-12 09:01:59 +08:00
- The `Main-process`, `Renderer-process` and `Preload-script` are all config in `configs/xxx.ts`.
2021-11-10 21:19:02 +08:00
2021-11-12 09:01:59 +08:00
- All files are built using `Vite`, is supper fast.
2021-11-10 21:19:02 +08:00
2021-11-12 09:01:59 +08:00
- `scripts/build.mjs` only calls the `Vite` API and uses the `configs/xxx.ts` config file to build.
2021-11-10 21:19:02 +08:00
- The difference between `scripts/watch.mjs` and `build.mjs` is that the watch option is configured for the Main-process and Preload-script. The Renderer-process uses `require ('vite').createServer`
2021-12-10 09:04:19 +08:00
- Manage projects more through configuration other than scripts. -- **🥳 Simple and clearly**
2021-11-10 16:05:02 +08:00
2021-11-08 21:23:40 +08:00
## Demo
2021-11-11 08:17:54 +08:00
<img width="400px" src="https://raw.githubusercontent.com/caoxiemeihao/blog/main/vite-react-electron/react-win.png" />
2021-11-08 21:23:40 +08:00
2021-11-10 21:19:02 +08:00
## Wechat group | | 请我喝杯下午茶 🥳
2021-11-09 09:40:34 +08:00
2021-11-06 22:36:49 +08:00
<div style="display:flex;">
<img width="244px" src="https://raw.githubusercontent.com/caoxiemeihao/blog/main/assets/wechat/group/qrcode.jpg" />
&nbsp;&nbsp;&nbsp;&nbsp;
<img width="244px" src="https://raw.githubusercontent.com/caoxiemeihao/blog/main/assets/wechat/%24qrcode/%2419.99.png" />
</div>