Skip to content

Instantly share code, notes, and snippets.

View jugaldb's full-sized avatar
🙋‍♂️

Jugal D. Bhatt jugaldb

🙋‍♂️
View GitHub Profile
@Sinequanonh
Sinequanonh / telegram-bot.js
Last active October 25, 2023 06:09
Nodejs script to send Telegram push notifications
const TelegramBot = require('node-telegram-bot-api');
// replace the value below with the Telegram token you receive from @BotFather
const token = YOUR_TOKEN;
// read the doc from https://github.com/yagop/node-telegram-bot-api to know how to catch the chatId
const chatId = CHAT_ID;
const bot = new TelegramBot(token, { polling: false });
const telegrambot = (message, json) => {