Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/nurdism/nuxtjs-electron

A utility module that helps you work with electron inside nuxt.
https://github.com/nurdism/nuxtjs-electron

Last synced: about 2 months ago
JSON representation

A utility module that helps you work with electron inside nuxt.

Awesome Lists containing this project

README

        






Dependencies Status
Dev Dependencies Status
Peer Dependencies Status
Downloads
Version
License
Chat on discord

# nuxtjs-electron

> This is a utility module that helps you work with electron inside nuxt.

**Features**
- Automagically starts/restarts electron when changes are made
- Seamless integration with nuxt build/generate

## Setup
- Add `nuxtjs-electron` dependency using yarn or npm to your project
- Add `nuxtjs-electron` to `modules` section of `nuxt.config.js`
```js
modules: [
['@nuxtjs/electron', {
main: 'main.js',
build: {
warnings: false,
babel: {
presets: [ ['env', {'targets': { 'node': 7 }, 'useBuiltIns': true }] ],
plugins: ['add-module-exports']
},
extend(config, options, nuxt) {
// extend webpack config
}
}
}],
]
````

## Options

### `main` - Entry point for electron main
- Default: `main.js`

### `build.warnings` - hide webpack warnings
- Default: true

### `build.babel` - babel-loader config
- Default: `{ presets: [ ['env', {'targets': { 'node': 7 }, 'useBuiltIns': true }] ], plugins: ['add-module-exports'] }`

### `build.extend(config, options, nuxt)` - webpack config
- @config: `webpack config object`
- @options: `module options object`
- @nuxt: `nuxt.options object`