Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 803 Bytes

readme.md

File metadata and controls

19 lines (16 loc) · 803 Bytes

Youtube Notification Bot

Simple and easy to use discord bot to notify members whenever a video is posted on a YouTube channel.

Packages Used

config.js

module.exports = {
    token: "YOUR_DISCORD_BOT_TOKEN", // discord bot token
    channel: "DISCORD_CHANNEL_ID", // channel id of a channel to send message
    messageTemplate: "Hello @everyone, **{author}** just now uploaded a video **{title}**!\n{url}", // message to send on discord
    channel_id: "YOUTUBE_CHANNEL_ID", // youtube channel id
    watchInterval: 30000 // Check every 30 seconds
};