This framework aims to simplify creation of Telegram bots by using OOP, MVC approaches and concepts.
Itβs built upon:
- Telegram Bot API - http://core.telegram.org/bots/api
- NodeJS Telegram Bot API - https://github.com/yagop/node-telegram-bot-api
- Redux - https://github.com/reactjs/redux
π Credits to Pavel Durov, Yagop and Dan Abramov
π¨βπ» Developed by Danybayev Sanzhar
To run the bot you need to do the following steps:
- Install all the packages
npm install
- Update config.js file with your credentials
module.exports = {
token: 'yourtoken',
name: '@yourbotname',
options: {
birth: null,
polling: true
},
backButton: 'β© Back'
};
- Run the app.js file
node app