1.0.4 • Published 12 months ago

multibot-telegram v1.0.4

Weekly downloads
-
License
ISC
Repository
github
Last release
12 months ago

MultiBot-Telegram

MultiBot-Telegram is a Node.js library designed for managing multiple Telegram bots effortlessly. It simplifies the process of setting up, managing, and interacting with multiple Telegram bots using the Telegram Bot API.

Installation

To install the library, use npm:

npm install multibot-telegram

Getting Started

To get started with MultiBot-Telegram, initialize the library and configure your bots as shown below:

const MultiBot = require('multibot-telegram');

const multiBot = new MultiBot({
    type: 'one',
    bots: [
        { id: 123456789, token: '123456789:ABCdefGHIjklMNO_pqrSTUvwxYz', main: true }
    ],
    options: {
        commands: [
            { command: '/start', description: 'Start command' }
        ]
    }
});

Full Documentation

For detailed usage, configuration, and method descriptions, please refer to the Full Documentation.

License

MIT License. See the LICENSE file for details.

1.0.4

12 months ago

1.0.3

12 months ago

1.0.2

12 months ago

1.0.1

12 months ago

1.0.0

12 months ago