reactjs-alex-alex2006hw / electron-squirrel-startup

Default Squirrel.Windows event handler for your Electron apps.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

electron-squirrel-startup travis npm appveyor

Default Squirrel.Windows event handler for your Electron apps.

Installation

npm i electron-squirrel-startup

Usage

To handle the most common commands, such as managing desktop shortcuts, just add the following to the top of your main.js and you're good to go:

if(require('electron-squirrel-startup')) return;

For Babel/ES6:

const { app } = require('electron');
// ....
if(require('electron-squirrel-startup')) app.quit();

Read More

License

Apache 2.0

About

Default Squirrel.Windows event handler for your Electron apps.

License:Apache License 2.0


Languages

Language:JavaScript 100.0%