Table of contents
About
telegram.js is a powerful module that allows you to easily interact with the Telegram Bot API
- Object-oriented
- Performant
- 99% coverage of telegram Bot API
Installation
npm install @yuva1422/telegram.js
Example Usage
const Telegram = require('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