Socket
Socket
Sign inDemoInstall

telegraf-ts

Package Overview
Dependencies
6
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

telegraf-ts

Well-Typed fork of telegraf


Version published
Maintainers
1
Weekly downloads
13

Weekly downloads

Readme

Source

Telegraf Bot API Version NPM Version node Build Status js-standard-style Community Chat

Introduction

Bots are special Telegram accounts designed to handle messages automatically. Users can interact with bots by sending them command messages in private or group chats. These accounts serve as an interface for code running somewhere on your server.

Features

  • Full Telegram Bot API 4.8 support
  • Telegram Payment Platform
  • HTML5 Games
  • Inline mode
  • Incredibly fast
  • now/Firebase/Glitch/Heroku/AWS λ/Whatever ready
  • http/https/fastify/Connect.js/express.js compatible webhooks
  • Easy to extend
  • TypeScript typings

Installation

$ npm install telegraf

or using yarn:

$ yarn add telegraf

Documentation

Telegraf developer docs

Examples

const { Telegraf } = require('telegraf')

const bot = new Telegraf(process.env.BOT_TOKEN)
bot.start((ctx) => ctx.reply('Welcome!'))
bot.help((ctx) => ctx.reply('Send me a sticker'))
bot.on('sticker', (ctx) => ctx.reply('👍'))
bot.hears('hi', (ctx) => ctx.reply('Hey there'))
bot.launch()
const { Telegraf } = require('telegraf')

const bot = new Telegraf(process.env.BOT_TOKEN)
bot.command('oldschool', (ctx) => ctx.reply('Hello'))
bot.command('modern', ({ reply }) => reply('Yo'))
bot.command('hipster', Telegraf.reply('λ'))
bot.launch()

There's some cool examples too.

Keywords

FAQs

Last updated on 08 Oct 2020

Did you know?

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

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc