c83f836faf
* docs: add references to app.whenReady() in isReady * refactor: prefer app.whenReady() In the docs, specs, and lib, replace instances of `app.once('ready')` (seen occasionally) and `app.on('ready')` (extremely common) with `app.whenReady()`. It's better to encourage users to use whenReady(): 1. it handles the edge case of registering for 'ready' after it's fired 2. it avoids the minor wart of leaving an active listener alive for an event that wll never fire again
23 lines
611 B
JavaScript
23 lines
611 B
JavaScript
const { app } = require('electron')
|
|
const net = require('net')
|
|
|
|
const socketPath = process.platform === 'win32' ? '\\\\.\\pipe\\electron-app-relaunch' : '/tmp/electron-app-relaunch'
|
|
|
|
process.on('uncaughtException', () => {
|
|
app.exit(1)
|
|
})
|
|
|
|
app.whenReady().then(() => {
|
|
const lastArg = process.argv[process.argv.length - 1]
|
|
const client = net.connect(socketPath)
|
|
client.once('connect', () => {
|
|
client.end(String(lastArg === '--second'))
|
|
})
|
|
client.once('end', () => {
|
|
app.exit(0)
|
|
})
|
|
|
|
if (lastArg !== '--second') {
|
|
app.relaunch({ args: process.argv.slice(1).concat('--second') })
|
|
}
|
|
})
|