Note: This project is now hosted on Codeberg: https://codeberg.org/ghalldev/bzzz
A minimal package for sending push notifications with brrr, by Simon B. Støvring.
Sending a basic notification is simple.
import Bzzz from 'bzzz'
const bzzz = new Bzzz("YOUR_BRRR_SECRET")
await bzzz.notify("Hello World!")You can optionally pass an object to the notify() method containing at least a title and message.
import Bzzz from 'bzzz'
const bzzz = new Bzzz("YOUR_BRRR_SECRET")
await bzzz.notify({
title: "Hello World",
message: "Howdy there.",
});