| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
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-debugRequires 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
| Back | FazBrowse Home | New Git URL |