Simple
Televerse is designed with user-friendliness in mind. Building your bots never been this easy.
Your gateway to seamless Telegram Bot Development
Build Bots, Like A Boss
Televerse is a powerful, easy-to-use, and highly customizable Telegram bot framework built with Dart programming language. It provides a complete and well-structured API that enables developers to create and deploy complex Telegram bots with ease. Televerse provides a total of 0 dynamic types on its public interface, making it easy for developers to write strictly typed code.
Building a simple bot is as simple as two steps.
Add televerse
to your pubspec.yaml
file by running dart pub add televerse
.
dart pub add televerse
Get your bot ready in a few lines.
import 'dart:io';
import 'package:televerse/televerse.dart';
// Create the bot instance
final bot = Bot(Platform.environment["BOT_TOKEN"]!);
void main(List<String> args) async {
// Handle the /start command
bot.command("start", (ctx) async {
await ctx.reply("Welcome to Televerse! π");
});
// Start the bot
await bot.start();
}
That's it, your bot should be running fine and listening to the /start
command.
Televerse supports the latest Telegram Bot API - 7.10!