
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.