A simple wrapper for the Telegram Bot API. Just provide your bot token and start using it.
npm install telegram-bot-apiimport { telegramBotAPI } from "telegram-bot-api";
const token = "YOUR_BOT_TOKEN";
const bot = new telegramBotAPI(token);
// Send a message
bot.sendMessage("chat_id", "Your message here");
// Send a keyboard
bot.sendKeyboard("chat_id", "Choose an option:", ["Option 1", "Option 2"]);