Telegram Bot API client for nodejs
npm install telegram-bot-api-nodejs```
npm install telegram-bot-api-nodejs
`js
import { sendMessage } from "telegram-bot-api-nodejs"
const token = "12345:abcd..."
const message = await sendMessage(token, {
chat_id: 12345,
text: "Hello",
})
`
`js
import { parseUpdate } from "telegram-bot-api-nodejs"
const update = await parseUpdate(ctx.request.body)
if (update.message) {
// ...
}
``