I\'m still new to Electron which I\'m currently following here.
I\'ve read this page regarding on how to include the Chrome DevTools so that I can debug my applicati
you can open dev tool like this:
mainWindow = new BrowserWindow({ width: 1024, height: 768 });
mainWindow.loadURL('your url');
mainWindow.webContents.openDevTools();
mainWindow.webContents.on('devtools-opened', () => {
setImmediate(() => {
// do whatever you want to do after dev tool completely opened here
mainWindow.focus();
});
});