Muqriz 48f16bfc3e initail first | 4 months ago | |
---|---|---|
.. | ||
.github/workflows | 4 months ago | |
node_modules | 4 months ago | |
test | 4 months ago | |
.eslintrc | 4 months ago | |
.jsfmtrc | 4 months ago | |
.travis.yml | 4 months ago | |
LICENSE | 4 months ago | |
README.md | 4 months ago | |
appveyor.yml | 4 months ago | |
index.js | 4 months ago | |
package.json | 4 months ago |
Default Squirrel.Windows event handler for your Electron apps.
npm i electron-squirrel-startup
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();
Apache 2.0