UNPKG

electron-topper

Version:

Etop (electron-topper) is a notification API wrapper that allows you to send popup notifications to the user's device using a simplified tool.

6 lines (5 loc) 247 B
const { app, BrowserWindow } = require("electron"); const topper = require("./index.js"); app.on("ready", () => { topper.notify("Title of notification", "A little description of the notification", "/Users/Jackson/fps2d/icon.png", "button"); });