Node-telegram-cache-chat-messages
Node module which helps your bot to cache text messages in Telegram chat.
Install:
npm install node-telegram-cache-chat-messages
Use:
Node-telegram-cache-chat-messages initially works with node-telegram-bot-api.
const TelegramBot = ;const TelegramCacheChatMessages = ; const bot = BOT_TOKEN;const casheMessages = bot all: true edited: true; bot;
Options:
bot: <you bot instance> // previously created bot via node-telegram-bot-api all: <boolean> // [default: false] false means that you cache only last message, true is that you cache all messages edited: <boolean> // [default: true] false means that you cache only messages, true is that you cache edited messages too;
Note:
- After using your commands cached
messages
will be cleared. This is done to avoid serious memory overflow - Node-telegram-cache-chat-messages doesn't process messages with non text content
- Node-telegram-cache-chat-messages doesn't cache other bots messages