Skip to main content
Version: 2.6

Installation

$ npm i @maks1ms/nestjs-telegraf telegraf

Once the installation process is complete, we can import the TelegrafModule into the root AppModule.

src/app.module.ts
import { Module } from '@nestjs/common';
import { TelegrafModule } from '@maks1ms/nestjs-telegraf';

@Module({
imports: [
TelegrafModule.forRoot({
token: 'TELEGRAM_BOT_TOKEN',
})
],
})
export class AppModule {}

The forRoot() method accepts the same configuration object as Telegraf class constructor from the Telegraf package, as described here.