- Simple, (very simple) and easy to use command handler for node-telegram-bot-api
This command handler is based on Discord.js Command Handler by BracketByte
Make sure you had Node.js and NPM installed up to date on your system
- Go to Terminal/Shell and run
npm installto install all important dependencies - Make a new .js file in commands folder.
- Populate the file with the code represent here:
module.exports={name: "ping",execute: async(bot,msg,chat)=>{bot.sendMessage(chat,"Pong!")}}the chat variable represents chat id, so bot is gonna send a message "Pong!" to that chat
If you want to make bot replied. do /ping. and it will replied with Pong!
I also advised you to visit the Github repository of node-telegram-bot-api package so you can get more information on how to send a picture, do advance stuff, and etc