Skip to content

nuxt-community/electron-template

Repository files navigation

electronuxt-starter

Create an Electron app that serves a Nuxt.js app

Installation

Install the dependencies:

npm install # Or yarn install

If you plan to use the npm run pack command below, ensure electron-packager is installed globally:

npm install -g electron-packager # Or yarn global add electron-packager

Development mode

npm run dev

Production mode

npm run build
npm run start

Package the app

npm run pack

See more on electron-packager documentation.

Maintainers