Simple wrapper around electron
package. Built on electron-quick-start
boilerplate, but it hides boilerplate code. It's meant to enable run JavaScript code in Electron without writing any electron specific code. You can run for example NodeJS application for purpose of debugging (using chrome dev tools, for example).
Note: this package is running code in renderer Electron process so if you need to access main process you should rather use other Electron boilerplate.
It allows you to specify simple configuration file, for example:
module.exports = {
url: 'index.html',
menu: [],
openDevTools: true
};