electron-nuxt3 icon indicating copy to clipboard operation
electron-nuxt3 copied to clipboard

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

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