
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.
@eeue56/baner
Advanced tools
Flag parsing library in Typescript
Part of the Hiraeth collection.
npm install --save @eeue56/baner
The library is built on the ideas:
import {
empty,
longFlag,
bothFlag,
number,
parse,
parser,
string,
help,
variableList,
oneOf,
allErrors,
allMissing,
} from "@eeue56/baner";
const helloParser = parser([
longFlag("name", "The name to say hi to", string()),
longFlag("age", "The age of the person", number()),
longFlag("pets", "Names of your pets", variableList(string())),
longFlag("type", "Type of owner", oneOf([ "human", "alien" ])),
bothFlag("h", "help", "This help text", empty()),
]);
function sayHi(
name: string,
age: number,
pets: string[],
type: "human" | "alien"
): void {
console.log(`Hi, ${name}! Congrats on being ${age} years old.`);
if (type === "alien") console.log("Welcome to earth!");
if (pets.length > 0) {
console.log(
`Wow, you had ${pets.length} pets. I bet ${pets.join(
", "
)} were good pets to have`
);
}
}
function showHelp(): void {
console.log("Provide a name via --name and age via --age");
console.log(help(helloParser));
}
const program = parse(helloParser, process.argv);
if (program.flags["h/help"].isPresent) {
showHelp();
} else {
const errors = allErrors(program);
const missing = allMissing(program, [ "h/help" ]);
if (errors.length > 0) {
console.log("Errors:");
console.log(errors.join("\n"));
} else if (missing.length > 0) {
console.log("Missing flags:");
console.log(missing.join("\n"));
} else {
sayHi(
(program.flags.name.arguments as Ok<string>).value,
(program.flags.age.arguments as Ok<number>).value as number,
(program.flags.pets.arguments as Ok<string[]>).value as string[],
(program.flags.type.arguments as Ok<string>).value as
| "human"
| "alien"
);
}
}
Baner means "flag" in Welsh. In English, you'd pronounce it as "ban-eh-eruh".
FAQs
Flag parsing library in Typescript
The npm package @eeue56/baner receives a total of 3 weekly downloads. As such, @eeue56/baner popularity was classified as not popular.
We found that @eeue56/baner 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
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.