Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@kearisp/cli
Advanced tools
Command line interface for node.js
npm install @kearisp/cli
import {Cli} from "@kearisp/cli";
const cli = new Cli();
cli.command("foo")
.action(() => {
return "Foo result";
});
cli.run(process.argv).then((res) => {
process.stdout.write(res);
}).catch((err) => {
process.stderr.write(err.message);
});
<bar>
- required argument
[bar]
- not required argument
ℹ️ The spread is not stable now
<...bars>
- required spread argument
[...bars]
- not required spread argument
cli.command("foo <foo1> [foo2]")
.action((input: CommandInput) => {
return `Foo result, with arguments foo1=${input.argument("foo1")} foo2=${input.argument("foo2")}`;
});
cli.command("bar [...bars]")
.action((input: CommandInput) => {
return "Bar result, Bars: " + input.argument("bars").join(", ");
});
Types:
cli.command("foo")
.option("bar", {
type: "string",
alias: "b"
})
.option("init", {
type: "boolean",
alias: "i"
})
.action((input: CommandInput) => {
const {
bar = "",
init = false
} = input.options();
return `Foo result, with options bar=${bar} init=${init.toString()}`;
});
cli.command("foo")
.help({
description: "Foo description"
})
.option("option", {
alias: "o",
description: "Option description"
})
.action((input) => {
const {
option = ""
} = input.options();
return `option=${option}`;
});
./cli.js foo -h
Response:
Help: Foo description --option, -o - Option description
cli.command("foo <bar>")
.completion("bar", () => ["value1", "value2", "value3"])
.action((input) => {
const {
bar = ""
} = input.arguments();
return `Foo result, with argument bar=${bar}`;
});
cli.command("completion script")
.action(() => {
return cli.completionScript();
});
source <(your-script.js completion script)
FAQs
Command line interface for node.js
The npm package @kearisp/cli receives a total of 40 weekly downloads. As such, @kearisp/cli popularity was classified as not popular.
We found that @kearisp/cli demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.