
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
beepbot-message-parser
Advanced tools
A simple message parser for making complex problems so simple.
Imagine you are creating a chatbot and you want to create a way for your users to create dynamic responses for messages. Like being able to get the current title on the platform or even getting the current time in the streamers timezone. This can be a complex problem to solve but this module is here to help!
This is BMP or "BeepBot Message Parser" it allows you to give an input string which could contain args/methods which get converted to methods and new values replace them. Pretty neat huh?
import { Parser } from 'beepbot-message-parser';
const testVars: { [name: string]: number } = {
cheese: 1,
test: 2,
};
const parser = new Parser({
varCallback: async (coreId: string, varName: string, type: VarType) => {
const val = testVars[varName.toLowerCase()];
if (testVars[varName.toLowerCase()] === undefined) {
return 1;
}
switch (type) {
case 'incr':
return val + 1;
case 'decr':
return val - 1;
default:
return val;
}
},
})
async function run(channelMessage: IMessage, channelSettings: any, input: string) {
return await parser.parse(channelMessage: IMessage, channelSettings: any, input: string);
}
run(channelMessage, channelSettings, input)
.then(res => console.log(res))
.catch(err => console.error(err));
// Get the current user.
let input = 'I am {user}' // I am TestUser
// Get the current song that a user is scrobbling.
let input = 'Now Playing: {lastfm artdude543}' // Now Playing: Hunter by Galantis
TODO.
FAQs
Message parser for BeepBot.
The npm package beepbot-message-parser receives a total of 3 weekly downloads. As such, beepbot-message-parser popularity was classified as not popular.
We found that beepbot-message-parser demonstrated a healthy version release cadence and project activity because the last version was released less than 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
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
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.