sindresorhus / electron-debug

Adds useful debug features to your Electron app
MIT License
749 stars 49 forks source link

electron-debug

Adds useful debug features to your Electron app

Features

DevTools

Toggle DevTools.

Reload

Force reload the window.

Element Inspector

Open DevTools and focus the Element Inspector tool.

Install

npm install electron-debug

Requires Electron 30 or later.

Usage

import {app, BrowserWindow} from 'electron';
import debug from 'electron-debug';

debug();

let mainWindow;
(async () => {
    await app.whenReady();
    mainWindow = new BrowserWindow();
})();

API

Only runs when in development, unless overridden by the isEnabled option. So no need to guard it for production.

electronDebug(options?)

Install keyboard shortcuts and optionally activate DevTools on each created BrowserWindow.

options

Type: object

isEnabled

Type: boolean

showDevTools

Type: boolean\ Default: true

Show DevTools on each created BrowserWindow.

devToolsMode

Type: string\ Default: 'previous'\ Values: 'undocked' 'right' 'bottom' 'previous' 'detach'

The dock state to open DevTools in.

windowSelector

Type: (window: BrowserWindow) => boolean | Partial<Options>\ Default: () => true (Use the global options for every window)

Specify customized options for each window.

The given function receives the window to apply the filter or new options to.

It must return one of these values:

devTools(window?)

Toggle DevTools for the specified BrowserWindow instance or the focused one.

window

Type: BrowserWindow\ Default: The focused BrowserWindow

refresh(window?)

Reload the specified BrowserWindow instance or the focused one.

window

Type: BrowserWindow\ Default: The focused BrowserWindow

openDevTools([window])

Open DevTools for the specified BrowserWindow instance or the focused one.

window

Type: BrowserWindow\ Default: The focused BrowserWindow

Related