Go to file
2022-03-31 15:02:52 +08:00
.github feat(ci): add github dependabot 2022-03-28 00:59:26 +08:00
.vscode refactor: better debug experience 2022-03-15 08:35:11 +08:00
packages chore: import on demand 2022-03-31 15:02:52 +08:00
scripts support debug 2022-03-15 08:34:36 +08:00
test feat(test): add playwright e2e test tool 2022-03-05 19:39:06 +08:00
.gitignore add .debug.env 2022-03-15 08:33:47 +08:00
.simple-git-hooks.cjs fix(cicd): build stage cicd fix 2022-03-16 10:21:25 +08:00
CHANGELOG.md update 2022-01-27 11:29:53 +08:00
Dockerfile feat(ci): add github action 🔨 2022-02-18 00:23:52 +08:00
electron-builder.json Update electron-builder.json 2022-02-18 09:26:54 +08:00
LICENSE chore: license 2021-11-04 14:26:18 +08:00
nano-staged.mjs feat(git-hooks): add nano-stage & git hooks 2022-03-06 18:47:31 +08:00
package-lock.json bump vite-plugin-electron-renderer from 0.3.1 to 0.3.2 2022-03-31 07:57:28 +08:00
package.json bump vite-plugin-electron-renderer from 0.3.1 to 0.3.2 2022-03-31 07:57:28 +08:00
playwright.config.ts feat(test): add playwright e2e test tool 2022-03-05 19:39:06 +08:00
README.md remove Wechat 2022-03-30 09:47:11 +08:00
README.zh-CN.md docs: update 2022-03-30 11:21:13 +08:00
tsconfig.json tsconfig.json --skipLibCheck 2022-01-17 18:11:08 +08:00
types.d.ts rename 2022-02-08 11:13:34 +08:00

electron-vite-vue

awesome-vite GitHub license GitHub stars GitHub forks

English | 简体中文

🥳 Real simple Electron + Vue + Vite boilerplate.

Quick Start

# clone the project
git clone https://github.com/caoxiemeihao/electron-vite-vue.git

# enter the project directory
cd electron-vite-vue

# install dependency
npm install

# develop
npm run dev

quick-start

Another way is by scaffolding started

npm create electron-vite

Overview

This is a Vite-integrated Electron template built with simplification in mind.

The repo contains only the most basic files, dependencies and functionalities to ensure flexibility for various scenarios.

You need a basic understanding of Electron and Vite to get started. But that's not mandatory - you can learn almost all the details by reading through the source code. Trust me, this repo is not that complex. 😋

Directory

A dist folder will be generated everytime when dev or build command is executed. File structure of dist is identical to the packages directory to avoid any potential path calculation errors.

├
├── dist                      Will be generated following the structure of "packages" directory
├   ├── main
├   ├── preload
├   ├── renderer
├
├── scripts
├   ├── build.mjs             Build script -> npm run build
├   ├── watch.mjs             Develop script -> npm run dev
├
├── packages
├   ├── main                  Main-process source code
├       ├── vite.config.ts
├   ├── preload               Preload-script source code
├       ├── vite.config.ts
├   ├── renderer              Renderer-process source code
├       ├── vite.config.ts
├

dependencies vs devDependencies

  • First, you need to know if the package is still needed at runtime after packed.

  • Packages like serialport, sqlite3 are node-native modules and should be placed in dependencies. Vite will not build them and will treat them as externals.

  • Packages like vue, react are pure javascript modules and can be built with Vite. They can be listed in devDependencies which helps reducing the size of bundled product.

Use Electron, NodeJs API

🚧 Due to electron security constraints, using Electron or NodeJS API in the rederer process is strongly discouraged.

The template provides two methods for using the NodeJs API in the rendering process:

  1. Bypass the security constraints (default), located in the main branch. nodeIntegration is enabled by default, making it easy to use.🎉, but there are certain security risks 🚧.
  2. Inject Render by preload script, located in the withoutNodeIntegration branch. nodeIntegration is turned off by default, the official recommended way of electron, more secure🔒.

For 1, all NodeJs and Electron APIs can be used directly in the rendering process.

For 2, all NodeJs, Electron APIs injected into the rendering process via Preload-script

you need to create a context bridge and expose the APIs you need to the renderer process.

Note that if your project uses typescript, you also need to add type declarations to the Window interface, for example:

  • packages/preload/index.ts

    import fs from 'fs'
    import { contextBridge, ipcRenderer } from 'electron'
    
    // --------- Expose some API to Renderer-process. ---------
    contextBridge.exposeInMainWorld('fs', fs)
    contextBridge.exposeInMainWorld('ipcRenderer', ipcRenderer)
    
  • packages/renderer/src/global.d.ts

    // Defined on the window
    interface Window {
      fs: typeof import('fs')
      ipcRenderer: import('electron').IpcRenderer
    }
    
  • packages/renderer/src/main.ts

    // Use Electron, NodeJs API in Renderer-process
    console.log('fs', window.fs)
    console.log('ipcRenderer', window.ipcRenderer)
    

Finally, either way, for third-party NodeJs APIs (e.g. sqlite3), You'll also need to declare how it was imported in packages/renderer/vite.config.ts defineConfig.plugins so that the template can recognize them correctly. 👉 reference issues resolveElectron

Use SerialPort, SQLite3 or other node-native addons in Main-process

  • First, you need to make sure the packages are listed in the "dependencies" since they are still needed at runtime after the project is packed.

  • Source code of main process and preload scripts are also bundled with Vitebuild.lib. Rollup configurations needed.

More: 👉 packages/main/vite.config.ts

export default {
  build: {
    // built lib for Main-process, Preload-script
    lib: {
      entry: 'index.ts',
      formats: ['cjs'],
      fileName: () => '[name].js',
    },
    rollupOptions: {
      // configuration here
      external: [
        'serialport',
        'sqlite3',
      ],
    },
  },
}

Main window

请我喝杯下午茶 🥳