
Security News
NIST Officially Stops Enriching Most CVEs as Vulnerability Volume Skyrockets
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.
Client for telegram bots
npm i z-telbot
const { ZTelBot } = require('z-telbot');
import { ZTelBot } from 'z-telbot';
const telBot = new ZTelBot({ token: getApiToken() });
telBot.addTextMessageListener(evt => {
console.log(`[${evt.chat.name} (ID: ${evt.chat.id})] ${evt.from?.name}(ID: ${evt.from?.id}): ${evt.message?.text}`);
});
telBot.addCommandListener('hi', evt => {
evt.reply().text({ text: `Hi: ${evt.command.argsText}` });
});
telBot.addDefaultCommandListener(evt => {
if (!evt.commandFound) {
evt.reply().text({ text: `Comando inválido: ${evt.command.commandName}` });
}
});
telBot.listenUpdates().then((botInfo) => {
console.log(`Bot iniciado com sucesso: ${botInfo.username}`);
});
constructor getMe getUpdates sendMessage sendAudio listenUpdates addUpdateListener addMessageListener addSentMessageListener addTextMessageListener addDefaultCommandListener addCommandListener removeUpdateListener removeSentMessageListener removeMessageListener removeTextMessageListener removeDefaultCommandListener removeCommandListener sendCommands setMyCommands getMyCommands
const telBot = new ZTelBot({token: '...'});
Parameters:
{
token!: string;
}
const botInfo = await telBot.getMe();
console.log(botInfo);
const updates = await telBot.getUpdates();
console.log(updates);
Parameters:
{
offset?: number;
limit?: number;
timeout?: number;
allowedUpdates?: string[];
}
const messageInfo = telBot.sendMessage({text: 'Oi', chatId: 1234, parseMode: 'MarkdownV2'});
console.log(messageInfo);
Parameters:
{
chatId!: number | string;
text!: string;
parseMode?: ParseMode;
entities?: MessageEntity[];
disableWebPagePreview?: boolean;
disableNotification?: boolean;
replyToMessageId?: number;
allowSendingWithoutReply?: boolean;
replyMarkup?: InlineKeyboardMarkup | ReplyKeyboardMarkup | ReplyKeyboardRemove | ForceReply;
}
const messageInfo = telBot.sendAudio({audio: fileFromPath('song.mp3')});
console.log(messageInfo);
Parameters:
{
chatId!: number | string;
audio!: InputFile | string;
duration?: number;
width?: number;
height?: number;
thumb?: InputFile | string;
caption?: string;
parseMode?: ParseMode;
captionEntities?: MessageEntity[];
disableNotification?: boolean;
allowSendingWithoutReply?: boolean;
replyMarkup?: InlineKeyboardMarkup | ReplyKeyboardMarkup | ReplyKeyboardRemove | ForceReply;
}
telBot.listenUpdates().then((botInfo) => {
console.log(`Bot iniciado com sucesso: ${botInfo.username}`);
});
Parameters:
{
once?: boolean;
offset?: number;
limit?: number;
timeout?: number;
allowedUpdates?: string[];
skipFirstBatch?: boolean;
delay?: number;
}
telBot.addUpdateListener((evt)=>{
console.log(evt);
});
telBot.addMessageListener((evt)=>{
console.log(evt);
});
telBot.addSentMessageListener((evt)=>{
console.log(evt);
});
telBot.addSentMessageListener((evt)=>{
console.log(evt.text);
});
telBot.addCommandListener('hi', (evt)=>{
evt.reply().text({text: 'Hi'});
});
telBot.addDefaultCommandListener((evt)=>{
if (!evt.commandFound){
evt.reply().text({text: `Invalid command: ${evt.command.commandName}`});
}
});
telBot.addCommandListener('hi', (evt)=>{
evt.reply().text({text: 'Hi'});
});
const cmd = {command: 'hi', description: 'Send hi'};
telBot.addCommandListener(cmd, (evt)=>{
evt.reply().text({text: 'Hi'});
});
Parameters:
{
command!: string;
hidden?: boolean;
description?: string;
}
telBot.addCommandListener('test', (evt)=>{
evt.reply().text({text: 'Test'});
}
const cmd = {command: 'hi', description: 'Send hi'};
telBot.addCommandListener(cmd, (evt)=>{
evt.reply().text({text: 'Hi'});
});
telBot.sendCommands();
telBot.addCommandListener('hi', (evt)=>{
evt.reply().text({text: 'Hi'});
});
telBot.addDefaultCommandListener((evt)=>{
if (evt.command.commandName==='test'){
evt.reply().text({text: 'Test'});
}
});
telBot.sendCommands([{command: 'test', description: 'Test'}]);
const listenerId = telBot.addCommandListener('test', (evt)=>{
evt.reply().text({text: 'Test'});
});
telBot.removeCommandListener(listenerId);
const commands: BotCommand[] = await telBot.getMyCommands();
console.log(commands);
telBot.setMyCommands([{
command: 'hi'
description: 'Send hi'
}]);
FAQs
Client for telegram bots
The npm package z-telbot receives a total of 0 weekly downloads. As such, z-telbot popularity was classified as not popular.
We found that z-telbot 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
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.

Security News
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.