yuvapoojary / telegram.js

A powerfull JavaScript library for interacting with telegram bot API
https://telegram.js.org
Apache License 2.0
4 stars 3 forks source link


Table of contents

About

telegram.js is a powerful module that allows you to easily interact with the Telegram Bot API

Installation

npm install @yuva1422/telegram.js

Example Usage

const Telegram = require('@yuva1422/telegram.js');
const client = new Telegram.Client();

client.on('ready', () => {
  console.log(`Logged in as ${client.user.username}`);
});

client.on('message', (msg) => {
  if (msg.content === 'hii') {
    msg.reply('hello');
  };
});

client.commands.on('ping', (bot, msg, args) => {
  msg.chat.send('pong!');
});

client.login('token');

client.startPolling();

Links

Contributing

Before creating an issue, please ensure that it hasn't already been reported/suggested, and double-check the documentation.

Help

If you don't understand something in the documentation, you are experiencing problems, or you just need a gentle nudge in the right direction, please don't hesitate to join our official Telegram.js Server