https://github.com/dvgamerr/electron-nuxt-template
https://github.com/dvgamerr/electron-nuxt-template
electron nuxtjs template
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dvgamerr/electron-nuxt-template
- Owner: dvgamerr
- License: mit
- Created: 2018-02-04T17:26:24.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-09-17T02:55:16.000Z (almost 7 years ago)
- Last Synced: 2025-10-30T07:29:41.003Z (8 months ago)
- Topics: electron, nuxtjs, template
- Language: JavaScript
- Size: 371 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Electron
Create an Electron app that serves a Nuxt.js app
## Installation
Install the dependencies:
```bash
npm install # Or yarn install
```
If you plan to use the `npm run pack` command below, ensure electron-packager is installed globally:
```bash
npm install -g electron-packager # Or yarn global add electron-packager
```
## Development mode
```bash
npm run dev
```
## Production mode
```bash
npm run build
npm run start
```
## Package the app
```bash
npm run pack
```
See more on [electron-packager documentation](https://github.com/electron-userland/electron-packager).