Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Last-Order/Meriix
Recipe-oriented, flexible, multifunctional CLI wrapper based on Electron.
https://github.com/Last-Order/Meriix
Last synced: 9 days ago
JSON representation
Recipe-oriented, flexible, multifunctional CLI wrapper based on Electron.
- Host: GitHub
- URL: https://github.com/Last-Order/Meriix
- Owner: Last-Order
- License: mit
- Created: 2019-10-02T11:59:00.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-06-29T02:28:23.000Z (over 1 year ago)
- Last Synced: 2024-08-01T13:39:01.940Z (3 months ago)
- Language: Vue
- Homepage:
- Size: 4.09 MB
- Stars: 9
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
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.
[![GitHub Build](https://github.com/electron-vite/electron-vite-vue/actions/workflows/build.yml/badge.svg)](https://github.com/electron-vite/electron-vite-vue/actions/workflows/build.yml)
[![GitHub Discord](https://img.shields.io/badge/chat-discord-blue?logo=discord)](https://discord.gg/sRqjYpEAUK)## 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
```![electron-vite-vue.gif](/electron-vite-vue.gif)
## Debug
![electron-vite-react-debug.gif](https://github.com/electron-vite/electron-vite-react/blob/main/electron-vite-react-debug.gif?raw=true)
## 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
```## FAQ
- [C/C++ addons, Node.js modules - Pre-Bundling](https://github.com/electron-vite/vite-plugin-electron-renderer#dependency-pre-bundling)
- [dependencies vs devDependencies](https://github.com/electron-vite/vite-plugin-electron-renderer#dependencies-vs-devdependencies)