1.1.0 • Published 5 years ago
github-notification-observer v1.1.0
github-notification-observer
Continually poll for notifications, emit when changed
Install
npm i github-notification-observer
Usage
import {githubNotifications} from 'github-notification-observer';
githubNotifications({token: '<Github personal access token>'})
.pipe(...)
.subscribe(
(notifications) => console.log(notifications)
);Each item emitted is an array of Github notifications.
API
githubNotifications(args) returns an observable of notifications, given a personal access token.
args.token Github personal access token.args.all If true, show notifications marked as read.args.participating If true, only shows notifications in which the user is directly participating or mentioned.args.since Only show notifications updated after the given time. This is a timestamp in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ.args.before Only show notifications updated before the given time. This is a timestamp in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ.