Skip to content

electron-vite-vue with others such as element-plus, i18n , etc.

License

Notifications You must be signed in to change notification settings

captainIT/electron-vite-vue-sth

Repository files navigation

electron-vite-vue-element-plus

🥳 Really simple Electron + Vue + Vite + Element-plus boilerplate.

GitHub Build GitHub Discord

Features

📦 Out of the box 🌱 Extensible, really simple directory structure
💪 Support using Node.js API in Electron-Renderer
🔩 Support C/C++ native addons
🖥 It's easy to implement multiple windows

Quick Setup

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

# enter the project directory
cd electron-vite-vue-sth

# install dependency
npm install

# develop
npm run dev

Directory

+ ├─┬ electron
+ │ ├─┬ main
+ │ │ └── index.ts    entry of Electron-Main
+ │ └─┬ preload
+ │   └── index.ts    entry of Preload-Scripts
  ├─┬ src
  │ └── main.ts       entry of Electron-Renderer
  ├── index.html
  ├── package.json
  └── vite.config.ts

enhance