Useful utilities for developing Electron apps and modules
Just an opinionated collection of things I often need when using Electron.
Don't use this yet.
$ npm install electron-util
const {appReady, is} = require('electron-util');
(async () => {
await appReady;
console.log(is.main);
//=> true
})();
- electron-config - Simple config handling for your Electron app or module
- electron-debug - Adds useful debug features to your Electron app
- electron-context-menu - Context menu for your Electron app
- electron-dl - Simplified file downloads for your Electron app
- electron-unhandled - Catch unhandled errors and promise rejections in your Electron app
MIT © Sindre Sorhus