An open API service indexing awesome lists of open source software.

https://github.com/dvgamerr/electron-nuxt-template


https://github.com/dvgamerr/electron-nuxt-template

electron nuxtjs template

Last synced: 3 months ago
JSON representation

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).