Skip to content

GramIO

Create your Telegram bots with convenience!

Get started

This command will help you create a project with GramIO (and ORM, linters and plugins) the easiest way.

bash
npm create gramio@latest ./bot
bash
yarn create gramio@latest ./bot
bash
pnpm create gramio@latest ./bot
bash
bun create gramio@latest ./bot
bash
TODO://

For more information, see the «Get started» section.

GramIO in action

Example which uses some interesting features.

ts
import { 
Bot
,
format
,
bold
,
code
} from "gramio";
import {
findOrRegisterUser
} from "./utils";
const
bot
= new
Bot
(
process
.
env
.
BOT_TOKEN
as string)
.
derive
("message", async () => {
const
user
= await
findOrRegisterUser
();
return {
user
,
}; }) .
on
("message", (
context
) => {
context
.
user
;
// // // // // // // return
context
.
send
(
format
`
Hi, ${
bold
(
context
.
user
.
name
)}!
You balance: ${
code
(
context
.
user
.
balance
)}`);
}) .
on
("callback_query", (
context
) => {
// //
context
.user;
Property 'user' does not exist on type 'CallbackQueryContext<Bot<{}, DeriveDefinitions & { message: { user: { id: number; name: string; balance: number; }; }; }>>'.
});