Star us on GitHub
Star
Menu

Electron Support

If you are running Highlight in Electron, a Desktop based JS framework, you can benefit from the additional functionality that tracks main process window events to stop and start Highlight recording when your app is minimized.

Please ensure you are using Highlight SDK version highlight.run@4.3.4. or higher. Call configureElectronHighlight with a BrowserWindow object to instrument Electron events.

const mainWindow = new BrowserWindow(...) configureElectronHighlight(mainWindow)
Copy

Under the hood, the function will forward the focus and blur events to your renderer process so that the highlight recording SDK can track them.

mainWindow.on('focus', () => { mainWindow.webContents.send('highlight.run', { visible: true }); }); window.on('blur', () => { mainWindow.webContents.send('highlight.run', { visible: false }); });
Copy

This will stop all highlight recording when the app is not visible and resume the session when the app regains visibility to help minimize performance and battery impact that Highlight may have on Electron users.