1.1.0 • Published 3 years ago

youtube-notification-module v1.1.0

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

youtube-notifier

Sends notifications when added channels upload videos. Gets information via YouTube feeds.

Usage

const ytnotifier = require('youtube-notifier');
const Notifier = new ytnotifier({
    channels: ['A channel ID', 'Another channel ID'],
    checkInterval: 50 /* Interval to check the latest video. */
});

Notifier.on('video', video => {
    console.log(video);
    /*
    video = {
        channelName,
        title,
        publishDate,
        url,
        id
    };
    */
});

Methods

Notifier.addChannels()

ParameterTypeReturns
channelsarrayPromise

Notifier.removeChannels()

ParameterTypeReturns
channelsarrayPromise
1.1.0

3 years ago

1.0.0

3 years ago