2015-12-08 01:05:08 +00:00
|
|
|
var app = require('electron').app
|
|
|
|
|
|
|
|
app.on('ready', function () {
|
|
|
|
app.exit(123)
|
|
|
|
})
|
|
|
|
|
|
|
|
process.on('exit', function (code) {
|
2015-12-10 02:09:59 +00:00
|
|
|
console.log('Exit event with code: ' + JSON.stringify(code, null, 2))
|
2015-12-08 01:05:08 +00:00
|
|
|
})
|