main.js 228 B

1234567891011121314
  1. const {app} = require('electron')
  2. app.once('ready', () => {
  3. console.log('started') // ping parent
  4. })
  5. const shouldExit = app.makeSingleInstance(() => {
  6. setImmediate(() => app.exit(0))
  7. })
  8. if (shouldExit) {
  9. app.exit(1)
  10. }