:electron: Electron + Vite + React + Sass boilerplate.
Go to file
草鞋没号 9520d9b6c1
Create watch.mjs
2021-11-17 09:10:39 +08:00
configs feat: integrate antd 2021-11-15 19:14:50 +08:00
scripts Create watch.mjs 2021-11-17 09:10:39 +08:00
src Merge branch 'main' into antd 2021-11-15 20:00:30 +08:00
.gitignore chore: UPDATE 2021-11-08 19:59:33 +08:00
LICENSE Initial commit 2021-11-01 01:54:59 +00:00
README.md chore(docs): UPDATE 2021-11-15 18:12:39 +08:00
README.zh-CN.md Update README.zh-CN.md 2021-11-16 11:27:00 +08:00
package-lock.json feat: integrate antd 2021-11-15 19:14:50 +08:00
package.json feat: integrate antd 2021-11-15 19:14:50 +08:00
paths.json refactor: react-ts -> renderer 2021-11-11 12:46:00 +08:00
tsconfig.json chore: UPDATE 2021-11-01 16:49:28 +08:00
types.d.ts fix: remove duplicate define 2021-11-11 17:00:48 +08:00

README.md

vite-react-electron

GitHub stars GitHub issues GitHub license Required Node.JS >= v14.17.0

English | 简体中文

Run Setup

# clone the project
git clone git@github.com:caoxiemeihao/vite-react-electron.git

# enter the project directory
cd vite-react-electron

# install dependency
npm install

# develop
npm run dev

Directory

├
├── configs
├   ├── vite.main.ts                 Main-process config file, for -> src/main
├   ├── vite.preload.ts              Preload-script config file, for -> src/preload
├   ├── vite.renderer.ts             Renderer-script config file, for -> src/renderer
├
├── 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
├   ├── renderer                     Renderer-process source code
├

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.

├── dist
|   ├── main
|   ├── preload
|   ├── renderer
├── src
|   ├── main
|   ├── preload
|   ├── renderer
|

How to work

  • The Main-process, Renderer-process and Preload-script are all config in configs/xxx.ts.

  • All files are built using Vite, is supper fast.

  • scripts/build.mjs only calls the Vite API and uses the configs/xxx.ts config file to build.

  • 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

  • Manage projects more through configuration other than scripts. -- 🥳 Simple and clear

Demo

Wechat group | | 请我喝杯下午茶 🥳