electron-notify-service
v1.0.0
Published
Notification service for electron applications
Downloads
2
Maintainers
Readme
electron-notify
Notification library for electron application. It allows showing desktop application in electron main code without a BrowserWindow setup. It uses HTML5 native Notification
to show notifications.
Using module
Import the module
const electronNotify = require('electron-notify-service');
Simple notification example
electronNotify.notify({
title: "Hello World",
body: "This is body"
});
Running the application
Install the npm dependencies.
npm install
Start application
npm run make
Make a build
npm run build