1.0.0 • Published 6 years ago

electron-notify-service v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

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