JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 35253
  • Score
    100M100P100Q138225F
  • 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

Dev Tools

Toggle Dev Tools.

  • OS X: Cmd+Alt+I
  • Linux: Ctrl+Shift+I
  • Windows: Ctrl+Shift+I

Reload

Force reload the window.

  • OS X: Cmd+R
  • Linux: Ctrl+R
  • Windows: Ctrl+R

Install

$ npm install --save electron-debug

Usage

require('electron-debug')();

let win;

app.on('ready', function () {
    win = new BrowserWindow({});
});

License

MIT © Sindre Sorhus