1.0.2 • Published 3 years ago

fastify-telegraf v1.0.2

Weekly downloads
14
License
MIT
Repository
github
Last release
3 years ago

fastify-telegraf

NPM version NPM downloads JavaScript Style Guide Known Vulnerabilities

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 fastify-telegraf@1.0.1 for telegraf v3 (if there's problem)

License

Licensed under MIT