Skip to content

EternalC0der/electron-nuxt3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

7 Commits
Β 
Β 
Β 
Β 

Repository files navigation

electorn-nuxt3

πŸš€ The perfect Electron + Nuxt3 quick start that you can deploy with or without electron!

βœ… Features

  • Perfect structure for parallel development of electron and nuxt 🏒
  • Deploy with or without electron! πŸš€
  • Typescript (you can use javascript too) πŸ“
  • electron-updater πŸŽ‰
  • custom electron-builder config 🎩
  • Latest versions of electron and nuxt ✨
  • Great DX and Extensibility πŸ•
  • Parallel transpilation and hot-reloading πŸ§ͺ
  • useElectron composable for easy access to electron APIs and IPC 🎨
  • Vue-Devtools support, ESLint & Prettier, and more! πŸ”₯

βš™οΈ Setup

# Clone the repository
git clone https://github.com/EternalC0der/electron-nuxt3.git

# Change directory to the template
cd electron-nuxt3/template

# Install dependencies
npm install

# Start the app in development mode (in electron)
npm run dev:electron
# Note: Use 'npm run dev:electron:win' if you're using a windows machine!

# Fire up vscode
code .

πŸ“‘ Usage

Development

# Start the app in development mode (in electron)
npm run dev:electron

# Start the app in development mode (in browser)
npm run dev

Build

# Generate static build
npm run build

# Build electron app for production
npm run build:electron