Skip to main content

deno-notifier.ts

Build Status https://img.shields.io/github/tag/uki00a/deno-notifier.ts.svg license deno doc

deno-notifier.ts is a Deno module for sending desktop notifications. It is written in pure TypeScript.

This module is still highly experimental! In particular, it has not been fully tested on Windows and Mac OS.

Usage

import { notify } from "https://deno.land/x/notifier/mod.ts";

await notify("This is a title", "This is a message");

Requirements

Linux

You’ll need to install one of the following:

  • notify-send

Mac OS X

You’ll need to install one of the following:

  • osascript

Windows

You’ll need to install one of the following:

Prior works