A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/sindresorhus/electron-debug below:

sindresorhus/electron-debug: Adds useful debug features to your Electron app

Adds useful debug features to your Electron app

Toggle DevTools.

Force reload the window.

Open DevTools and focus the Element Inspector tool.

npm install electron-debug

Requires Electron 30 or later.

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

debug();

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

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

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

Type: object

Type: boolean

Type: boolean
Default: true

Show DevTools on each created BrowserWindow.

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

The dock state to open DevTools in.

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:

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

Type: BrowserWindow
Default: The focused BrowserWindow

Reload the specified BrowserWindow instance or the focused one.

Type: BrowserWindow
Default: The focused BrowserWindow

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

Type: BrowserWindow
Default: The focused BrowserWindow


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4