Socket
Book a DemoInstallSign in
Socket

wrappergram

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wrappergram

Simple and tiny code-generated Telegram Bot API wrapper for TypeScript/JavaScript with file upload support

1.3.0
latest
npmnpm
Version published
Weekly downloads
10
-89.13%
Maintainers
1
Weekly downloads
 
Created
Source

wrappergram

Bot API npm npm downloads JSR JSR Score bundlejs

Simple and tiny code-generated Telegram Bot API wrapper for TypeScript/JavaScript with file upload support.

🌐 Multi-runtime - Works on Node.js, Bun and Deno

⚙️ Code-generated - For example, code-generated and auto-published Telegram Bot API types)

🛡️ Type-safe - Written in TypeScript with love ❤️

🤏 Tiny - Simple sendMessage call cost some bundlejs in bundle size. So it is a good choice for browser/serverless environments

But if you need a more complete framework, then please look to GramIO.

Usage

import { Telegram, getUpdates } from "wrappergram";

const telegram = new Telegram(process.env.BOT_TOKEN as string);

telegram.api.sendMessage({
    chat_id: 617580375,
    text: "Hello!",
});

for await (const update of getUpdates(telegram)) {
    console.log(update);

    if (update.message?.from) {
        telegram.api.sendMessage({
            chat_id: update.message.from.id,
            text: "Hi! Thanks for the message",
        });
    }
}

This example on bundlejs cost bundlejs

[!IMPORTANT] Use getUpdates only once in your code otherwise it will cause double calls to getUpdates

Call api

You can send requests to Telegram Bot API Methods via telegram.api with full type-safety!

const response = await telegram.api.sendMessage({
    chat_id: "@gramio_forum",
    text: "Hello, world!",
});

if (!response.ok) console.error("Something went wrong");
else console.log(`New message id is ${response.result.message_id}`);

Send keyboards

For keyboards you need to install @gramio/keyboard library and just use it!

import { Keyboard } from "@gramio/keyboards";

// telegram init
telegram.api.sendMessage({
    chat_id: "@gramio_forum",
    text: "Hello, world!",
    reply_markup: new InlineKeyboard().url(
        "GitHub",
        "https://github.com/gramiojs/wrappergram"
    ),
});

This example cost - bundlejs

Read more here

Send files

@gramio/files already used under the hood so you don't need to install it

import { MediaUpload } from "wrappergram";

telegram.api.sendPhoto({
    chat_id: "@gramio_forum",
    text: "Hello, world!",
    photo: MediaUpload.path("./cute-cat.png"),
});

telegram.api.sendDocument({
    chat_id: "@gramio_forum",
    text: "Hello, world!",
    photo: Bun.file("README.md"), // you can use File instance to upload files
});

This example cost - bundlejs

Read more here

Keywords

telegram

FAQs

Package last updated on 13 Apr 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.