Skip to content

mreshetHaifa/electron-debug

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 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

var app = require('app');

require('electron-debug')();

let win;

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

License

MIT © Sindre Sorhus

About

Adds useful debug features to your Electron app

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%