https://github.com/relliv/local-domain-manager
Local domain manager desktop app
https://github.com/relliv/local-domain-manager
Last synced: 5 months ago
JSON representation
Local domain manager desktop app
- Host: GitHub
- URL: https://github.com/relliv/local-domain-manager
- Owner: relliv
- License: mit
- Created: 2025-07-13T20:53:25.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-10-22T21:55:40.000Z (7 months ago)
- Last Synced: 2025-10-22T22:25:47.275Z (7 months ago)
- Language: TypeScript
- Size: 3.3 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# electron-vite-vue-tw
🥳 Really simple `Electron` + `Vue` + `Vite` + `TailwindCSS` boilerplate.
[](https://github.com/electron-vite/electron-vite-vue/actions/workflows/build.yml)
[](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 Setup
```sh
# clone the project
git clone https://github.com/electron-vite/electron-vite-vue.git
# enter the project directory
cd electron-vite-vue
# install dependency
npm install
# develop
npm run dev
```
## 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
```
## 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)