Socket
Socket
Sign inDemoInstall

electron-debug

Package Overview
Dependencies
1
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    electron-debug

Adds useful debug features to your Electron app


Version published
Weekly downloads
26K
increased by2.06%
Maintainers
1
Install size
15.7 kB
Created
Weekly downloads
 

Readme

Source

electron-debug

Adds useful debug features to your Electron app

Ideas for more debug features welcome!

Features

DevTools

Toggle DevTools.

  • OS X: Cmd Alt I or F12
  • Linux: Ctrl Shift I or F12
  • Windows: Ctrl Shift I or F12

Reload

Force reload the window.

  • OS X: Cmd R or F5
  • Linux: Ctrl R or F5
  • Windows: Ctrl R or F5

Install

$ npm install --save electron-debug

Usage

const app = require('app');
const BrowserWindow = require('browser-window');

require('electron-debug')({
	showDevTools: true
});

let win;

app.on('ready', () => {
	win = new BrowserWindow({
		width: 800,
		height: 600
	});
});

Options

showDevTools

Type: boolean
Default: false

Show DevTools on startup.

  • debug-menu - Chrome-like debug context-menu for Electron

License

MIT © Sindre Sorhus

Keywords

FAQs

Last updated on 14 Nov 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc