Skip to content
This repository has been archived by the owner on Dec 29, 2020. It is now read-only.

mvila/easy-notifier

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EasyNotifier Build Status

Flexible notifier with desktop and Slack targets.

Installation

npm install --save easy-notifier

Usage

import EasyNotifier from 'easy-notifier';

let notifier = new EasyNotifier({ appName: 'example' });

notifier.notify('Welcome Message', 'Hello, World!');

Concepts

Targets

You can configure the targets of the notifier.

For now, the supported targets are:

It is easy to create your own type of target. A target is just an object with a send(sender, title, message) method.

API

new EasyNotifier([options])

Create a notifier.

import EasyNotifier from 'easy-notifier';

let notifier = new EasyNotifier({ appName: 'example' });

options

  • sender: the name of the sender. If not specified, a nice name is generated from appName, hostName and NODE_ENV.
  • appName: the name of the running application.
  • hostName: the name of the host where the application is running. If not specified, hostName is determined from the hostname of the machine.
  • targets: the targets where all notifications are sent. The default is an instance of NodeNotifierTarget.
  • includeEnvironment (default: true): if false, the current environment (NODE_ENV) is not included in the sender name.

notifier.addTarget(target)

Add a target to the notifier.

import { SlackIncomingWebhookTarget } from 'easy-notifier';

notifier.addTarget(new SlackIncomingWebhookTarget(/* webhook URL */));

notifier.notify([title], message)

Send the specified message with an optional title. This method returns a promise which is resolved once the notification has been successfully sent.

notifier.notify('Welcome Message', 'Hello, World!');

License

MIT

About

Flexible notifier with desktop and Slack targets

Resources

Stars

Watchers

Forks

Packages

No packages published