surfgram
v1.0.28
Published
High-performance, fully typed SDK for Telegram Bot API
Downloads
2,399
Maintainers
Readme
Surfgram
Overview
Surfgram is a no-nonsense SDK for Telegram Bot API designed for developers who want:
- Strict typing
- Fluent interface
- Full auto-complete support
Quick Start
Install
npm install surfgram
# or
yarn add surfgram
# or
pnpm add surfgramWrite your first bot
import { Bot, Message } from 'surfgram';
const bot = new Bot('TOKEN');
bot.onMessage('/start', (message: Message) => {
message.sendMessage({ text: 'hi there' });
});
bot.startPolling();Community
We welcome contributions! Please read our:
License
Surfgram is distributed under the MIT License.
