JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 38900
  • Score
    100M100P100Q138428F
  • License MIT

Adds useful debug features to your Electron app

Package Exports

  • electron-debug

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (electron-debug) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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, BrowserWindow} = require('electron');

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