
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
Javascript Library for CLI applications.

#!/usr/bin/env node
const { program } = require('animaux');
const app = new program('greeting').version('1.0.0');
app
.command('hello <name>')
.describe('Greets the user')
.option('--greet', 'Greet message', 'Hello')
.option('--from', 'From', 'Cat')
.action(({ args, options }) => {
console.log(`${options.from} says "${options.greet}, ${args.name}"`);
});
app.parse(process.argv.slice(2));
$ greeting hello John
Cat says "Hello, John"
$ greeting hello John --from Dog --greet=Yo
Dog says "Yo, John"
--help$ greeting --help
Usage
$ greeting [command] [options]
Commands
hello Greets the user
Options (global)
Run '<command> --help' for more information on a command.
$ greeting build --help
Usage
$ greeting hello <name>
Greets the user
Options (global)
Options (scoped)
--greet Greet message (default: Hello)
--from From (default: Cat)
MIT
FAQs
Javascript Library for CLI applications.
The npm package animaux receives a total of 9 weekly downloads. As such, animaux popularity was classified as not popular.
We found that animaux 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.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

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.