
Security News
Package Maintainers Call for Improvements to GitHub’s New npm Security Plan
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
telegraf-callback-data
Advanced tools
Lightweight and simple library that helps manage callback data when using inline buttons in messages
$ npm install telegraf-callback-data
or using yarn
:
$ yarn add telegraf-callback-data
import { Telegraf, Markup, Context } from 'telegraf';
import { CallbackData } from 'telegraf-callback-data';
const bot = new Telegraf(process.env.BOT_TOKEN);
const greetingData = new CallbackData<{ type: string; }>(
'greeting', // namespace identifier
['type'] // data properties
);
bot.start((ctx: Context) =>
ctx.reply('How to greet?', {
...Markup.inlineKeyboard([
Markup.button.callback(
'oldschool',
greetingData.create({
type: 'oldschool',
})
), // callback data is equal to `greeting:oldschool`
Markup.button.callback(
'modern',
greetingData.create({
type: 'modern',
})
), // callback data is equal to `greeting:modern`
]),
})
);
bot.action(
greetingData.filter({
type: 'modern',
}),
(ctx) => ctx.answerCbQuery('Yo')
);
bot.action(
greetingData.filter({
type: 'oldschool',
}),
(ctx) => ctx.answerCbQuery('Hello')
);
bot.launch();
There's some more complex examples: counter and menu.
exampleCallbackData = new CallbackData(
'namespace-prefix',
['id', 'action' /* many as you want */]
/* separator = ':' */
);
const callbackData = exampleCallbackData.create({
id: '1337',
action: 'show',
});
console.log(callbackData); // namespace-prefix:1337:show
const parsedCallbackData = exampleCallbackData.parse(callbackData);
console.log(parsedCallbackData); // { id: "1337", action: "show" }
const regexpCallbackDataFilter = exampleCallbackData.filter({
action: 'show',
});
console.log(regexpCallbackDataFilter); // /namespace-prefix:\w+:show/
Thanks to @JrooTJunior, author of AIOGram! This library highly inspired by alternative feature in aiogram framework.
FAQs
Easy callback data management for Telegraf
The npm package telegraf-callback-data receives a total of 0 weekly downloads. As such, telegraf-callback-data popularity was classified as not popular.
We found that telegraf-callback-data demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.