# vite-react-electron ![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) [![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) **English | [įŽ€äŊ“中文](README.zh-CN.md)** ## Overview - All config files `Main-process`, `Renderer-process` and `Preload-script` they are in `configs/*.ts`. - All files are built using `Vite`, is supper fast. - `scripts/build.mjs` just calls the `Vite` API and uses the `configs/*.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 clearly** ## Run Setup ```bash # 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 ```tree ├ ├── 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. ```tree ├── dist | ├── main | ├── preload | ├── renderer ├── src | ├── main | ├── preload | ├── renderer | ``` ## Use Electron, NodeJs API > 🚧 By default, Electron don't support the use of API related to Electron and NoeJs in the Renderer-process, but someone still need to use it. If so, you can see the 👉 npm-package **[vitejs-plugin-electron](https://www.npmjs.com/package/vitejs-plugin-electron)** or another template **[electron-vite-boilerplate](https://github.com/caoxiemeihao/electron-vite-boilerplate)** #### All Electron, NodeJs API invoke passed `Preload-script` ## Shown ## Wechat group | | č¯ˇæˆ‘å–æ¯ä¸‹åˆčŒļ đŸĨŗ