electron-vite-react/README.md

104 lines
3.6 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-12-18 10:23:56 +08:00
## 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**
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
2021-12-29 09:33:21 +08:00
Once `dev` or `build` npm-script executed will be generate named `dist` folder. It has children dir of same as `src` folder, the purpose of this design can ensure the correct path calculation.
2021-11-10 21:19:02 +08:00
```tree
2022-01-31 09:31:14 +08:00
├── dist After build, it's generated according to the "src" directory
2021-12-29 09:33:21 +08:00
├ ├── main
├ ├── preload
├ ├── renderer
2021-11-10 21:19:02 +08:00
├── scripts
2022-01-31 09:31:14 +08:00
├ ├── build.mjs Build script, for -> npm run build
├ ├── vite.config.mjs Marin-process, Preload-script vite-config
├ ├── watch.mjs Develop script, for -> npm run dev
2021-11-10 21:19:02 +08:00
├── src
2022-01-31 09:31:14 +08:00
├ ├── main Main-process source code
├ ├── preload Preload-script source code
├ ├── renderer Renderer-process source code
├ ├── vite.config.ts Renderer-process vite-config
2021-11-10 21:19:02 +08:00
```
2021-12-21 09:30:05 +08:00
## 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`
2022-01-07 08:39:23 +08:00
* **src/preload/index.ts**
```typescript
import fs from 'fs'
import { contextBridge, ipcRenderer } from 'electron'
2022-01-21 17:20:36 +08:00
// --------- Expose some API to Renderer-process. ---------
contextBridge.exposeInMainWorld('fs', fs)
contextBridge.exposeInMainWorld('ipcRenderer', ipcRenderer)
2022-01-07 08:39:23 +08:00
```
* **src/renderer/src/global.d.ts**
```typescript
// Defined on the window
interface Window {
2022-01-21 17:20:36 +08:00
fs: typeof import('fs')
ipcRenderer: import('electron').IpcRenderer
2022-01-07 08:39:23 +08:00
}
```
2022-01-21 17:20:36 +08:00
* **src/renderer/src/main.ts**
2022-01-07 08:39:23 +08:00
```typescript
// Use Electron, NodeJs API in Renderer-process
2022-01-21 17:20:36 +08:00
console.log('fs', window.fs)
console.log('ipcRenderer', window.ipcRenderer)
2022-01-07 08:39:23 +08:00
```
2021-12-18 10:23:56 +08:00
## Shown
2021-11-08 21:23:40 +08:00
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-12-31 09:08:21 +08:00
## Wechat group
2021-11-09 09:40:34 +08:00
2021-12-31 09:08:21 +08:00
<img width="244px" src="https://raw.githubusercontent.com/caoxiemeihao/blog/main/assets/wechat/group/qrcode.jpg" />