telegram-bot-api-wrapper
v1.0.1
Published
A simple wrapper for the Telegram Bot API. Just provide your bot token and start using it.
Maintainers
Readme
Telegram Bot API
A simple wrapper for the Telegram Bot API. Just provide your bot token and start using it.
Installation
npm install telegram-bot-apiusage
import { 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"]);