https://github.com/patrick-web/seiltool
https://github.com/patrick-web/seiltool
Last synced: 13 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/patrick-web/seiltool
- Owner: Patrick-web
- License: mit
- Created: 2022-11-20T17:48:03.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-01T18:01:31.000Z (over 3 years ago)
- Last Synced: 2025-03-05T08:18:18.936Z (over 1 year ago)
- Language: TypeScript
- Size: 3.44 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# electron-vite-vue
🥳 Really simple `Electron` + `Vue` + `Vite` boilerplate.
[](https://github.com/vitejs/awesome-vite)
[](https://app.netlify.com/sites/electron-vite/deploys)
[](https://github.com/electron-vite/electron-vite-vue/blob/main/LICENSE)
[](https://github.com/electron-vite/electron-vite-vue)
[](https://github.com/electron-vite/electron-vite-vue)
[](https://github.com/electron-vite/electron-vite-vue/actions/workflows/build.yml)
## Features
📦 Out of the box
🎯 Based on the official [template-vue-ts](https://github.com/vitejs/vite/tree/main/packages/create-vite/template-vue-ts), less invasive
🌱 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 Start
```sh
npm create electron-vite
```

## Debug

## Directory
```diff
+ ├─┬ 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
```
## Be aware
🚨 By default, this template integrates Node.js in the Renderer process. If you don't need it, you just remove the option below. [Because it will modify the default config of Vite](https://github.com/electron-vite/vite-plugin-electron/tree/main/packages/electron-renderer#config-presets-opinionated).
```diff
# vite.config.ts
export default {
plugins: [
- // Use Node.js API in the Renderer-process
- renderer({
- nodeIntegration: true,
- }),
],
}
```
## FAQ
- [dependencies vs devDependencies](https://github.com/electron-vite/vite-plugin-electron-renderer#dependencies-vs-devdependencies)
- [C/C++ addons, Node.js modules - Pre-Bundling](https://github.com/electron-vite/vite-plugin-electron-renderer#dependency-pre-bundling)