Created
May 20, 2020 04:56
-
-
Save bendemboski/c80f0e7d1311140859b28ba9ee509146 to your computer and use it in GitHub Desktop.
Electron Fiddle Gist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Empty --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Modules to control application life and create native browser window | |
const {app, BrowserWindow} = require('electron') | |
console.log('before app ready', BrowserWindow.addDevToolsExtension); | |
app.on('ready', () => { | |
console.log('in app ready handler', BrowserWindow.addDevToolsExtension); | |
setImmediate(() => console.log('setImmediate() callback', BrowserWindow.addDevToolsExtension)); | |
app.quit() | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Empty |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment