fastify-telegraf
v1.0.2
Published
Fastify plugin to handle Telegraf webhook
Downloads
59
Maintainers
Readme
fastify-telegraf
Fastify plugin to handle Telegraf's webhook with Typescript support
Install
npm i fastify-telegraf
// or
yarn add fastify-telegraf
Example
Given the following code:
const fastify = require('fastify')()
const { Telegraf } = require('telegraf')
const telegrafPlugin = require('fastify-telegraf')
const bot = new Telegraf(BOT_TOKEN)
fastify.register(telegrafPlugin, { bot, path: '/my-secret-path' })
fastify.listen(8000, (err) => {
if (err) throw err
})
Note
Use [email protected] for telegraf v3 (if there's problem)
License
Licensed under MIT