A helpful wrapper around command-line-args and command-line-usage.
- Easily define single or multi-command CLI program
- Adds required options
- Suggests possible fixes for typos in flags or sub-commands
- Built in
--help
flag - Add documentation footers to commands
- Automatically add color to command types
- Type checked!
yarn add @liplum/cli
# or
npm i --save @liplum/cli
import { cli, Command } from '@liplum/cli';
const echo: Command = {
name: 'echo',
description: 'Print a string to the terminal',
examples: ['echo foo', 'echo "Intense message"'],
require: ['value'],
options: [
{
name: 'value',
type: String,
defaultOption: true,
description: 'The value to print'
}
]
};
const args = cli(echo);
// $ echo foo
console.log(args);
// output: { value: "foo" }
import cli, { Command } from '@liplum/cli';
const echo: Command = {
examples: [{ example: 'echo foo', desc: 'The default use case' }],
...
};
You can even nest multi-commands!
import cli, { Command } from '@liplum/cli';
const test: Command = { ... };
const lint: Command = { ... };
const scripts: MultiCommand = {
name: 'scripts',
descriptions: 'my tools',
commands: [test, lint]
};
const args = cli(scripts);
// $ scripts test --fix
console.log(args);
// output: { _command: 'test', fix: true }
Add additional docs to your commands with Footers.
const echo: Command = {
name: 'echo',
description: 'Print a string to the terminal',
examples: ['echo foo', 'echo "Intense message"'],
options: [
{
name: 'value',
type: String,
defaultOption: true,
description: 'The value to print'
}
],
footer: 'Only run this if you really need to',
// or
footer: {
header: 'Additional Info',
content: 'Only run this if you really need to'
},
// or
footer: [
{
header: 'Additional Info',
content: 'Only run this if you really need to'
}
]
};
To display code in a footer set code
to true.
const echo: Command = {
name: 'echo',
description: 'Print a string to the terminal',
examples: ['echo foo', 'echo "Intense message"'],
options: [
{
name: 'value',
type: String,
defaultOption: true,
description: 'The value to print'
}
],
footer: {
header: 'Additional Info',
code: true,
content: 'function foo (){\n return 1;\n}'
}
};
To require on of multiple flags simply make on of the items in the required array an array of n
options.
const echo: Command = {
name: 'one-or-another',
description: "Errors if one of the flags isn't provided",
examples: ['one-or-another --a', 'one-or-another --b'],
required: [['a', 'b']],
options: [
{
name: 'a',
type: Boolean,
description: 'One options'
},
{
name: 'b',
type: Boolean,
description: 'another option'
}
]
};
Provide argv
manually.
const args = cli(echo, { argv: ['--help'] });
Whether to show the help dialog. Defaults to true
const args = cli(echo, { showHelp: false });
Whether to camelCase the parsed options. Defaults to true
const args = cli(echo, { camelCase: false });
Configure how @liplum/cli
reports errors.
- exit - (default) print error message and exit process
- throw - throw error message
- object - return the error message on an object with key
error