mirror of
https://github.com/Maks1mS/nestjs-telegraf.git
synced 2024-12-24 23:14:39 +03:00
🤖 Powerful Nest module for easy and fast creation Telegram bots
6eccec5759
Bumps [eslint-plugin-import](https://github.com/benmosher/eslint-plugin-import) from 2.22.0 to 2.22.1. - [Release notes](https://github.com/benmosher/eslint-plugin-import/releases) - [Changelog](https://github.com/benmosher/eslint-plugin-import/blob/master/CHANGELOG.md) - [Commits](https://github.com/benmosher/eslint-plugin-import/compare/v2.22.0...v2.22.1) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
---|---|---|
.github | ||
lib | ||
website | ||
.all-contributorsrc | ||
.eslintrc.js | ||
.gitignore | ||
.npmignore | ||
.prettierrc | ||
index.d.ts | ||
index.js | ||
index.ts | ||
LICENSE.md | ||
package-lock.json | ||
package.json | ||
README.md | ||
tsconfig.json |
NestJS Telegraf
Documentation
If you want to dive fully into NestJS Telegraf then don't waste your time in this dump, check out the documentation site.
Installation
$ npm i nestjs-telegraf
Once the installation process is complete, we can import the TelegrafModule
into the root AppModule
:
import { Module } from '@nestjs/common';
import { TelegrafModule } from 'nestjs-telegraf';
@Module({
imports: [
TelegrafModule.forRoot({
token: 'TELEGRAM_BOT_TOKEN',
})
],
})
export class AppModule {}
Then add some decorators into the app.service.ts
for handling Telegram bot API updates:
import { Injectable } from '@nestjs/common';
import {
Start,
Help,
On,
Hears,
Context,
} from 'nestjs-telegraf';
@Injectable()
export class AppService {
@Start()
start(ctx: Context) {
ctx.reply('Welcome');
}
@Help()
help(ctx: Context) {
ctx.reply('Send me a sticker');
}
@On('sticker')
on(ctx: Context) {
ctx.reply('👍');
}
@Hears('hi')
hears(ctx: Context) {
ctx.reply('Hey there');
}
}
Support
Nest is an MIT-licensed open source project. It can grow thanks to the sponsors and support by the amazing backers. If you'd like to join them, please read more here.
People
- Authors - Aleksandr Bukhalo & Igor Kamyshev
- Maintainers - Aleksandr Bukhalo
- Website - https://nestjs.com
License
Nest is MIT licensed.
Contributors ✨
Thanks goes to these wonderful people (emoji key):
Eldar Salimzebarov 🐛 |
Vito Macchia 💻 🐛 |
KITAHARA SETSUNA 💻 🐛 |
Aleksandr Bukhalo 💻 📖 👀 |
Vyacheslav Saloid 🐛 |
This project follows the all-contributors specification. Contributions of any kind welcome!