Electron
can handle graceful-exit
in the background process for windows, and SIGTERM
for Linux.
To ask "politely" app to close:
- use
taskkill
without /f
- details. (windows)
- use
pkill -TERM <proc-name>
instead of kill
details (linux)
// Quit when all windows are closed.
app.on('window-all-closed', () => {
// On macOS it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') {
console.log('if you see this message - all windows was closed')
app.quit()
}
})
app.on('activate', () => {
// On macOS it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if (BrowserWindow.getAllWindows().length === 0) createWindow()
})
// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.on('ready', async () => {
createWindow()
})
// Exit cleanly on request from parent process.
if (process.platform === 'win32') {
// this message usually fires in dev-mode from the parent process
process.on('message', (data) => {
if (data === 'graceful-exit') {
console.log('if you see this message - graceful-exit fired')
app.quit()
}
})
} else {
process.on('SIGTERM', () => {
console.log('if you see this message - SIGTERM fired')
app.quit()
})
}