node-telegram-cache-chat-messages

1.3.0 • Public • Published

Node-telegram-cache-chat-messages

Build Status

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 = require('node-telegram-bot-api');
const TelegramCacheChatMessages = require('node-telegram-cache-chat-messages');
 
const bot = new TelegramBot(BOT_TOKEN);
const casheMessages = new TelegramCacheChatMessages({
  bot,
  all: true,
  edited: true
});
 
bot.onText(/command/, msg => {
  const chatId = msg.chat.id;
  const messages = casheMessages.messages(chatId);
  // do something with messages. For example resend last message:
  const lastMessage = messages[messages.length - 1];
 
  bot.sendMessage(chatId, lastMessage);
});

Options:

new TelegramCacheChatMessages({
  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

/node-telegram-cache-chat-messages/

    Package Sidebar

    Install

    npm i node-telegram-cache-chat-messages

    Weekly Downloads

    32

    Version

    1.3.0

    License

    MIT

    Unpacked Size

    5.52 kB

    Total Files

    7

    Last publish

    Collaborators

    • maratfakhreev