applause-cli
Super-duper lightweight no-dependency alternative to clap
Inspired by clap
. It wasn't quite what I wanted, so I wrote my own :P
This is refactored out of my main PhD codebase, so if you're wondering why there aren't very many commits, that's why.
Install
Install via npm
:
npm install applause-cli --save
Usage
Example usage:
"use strict";
import path from 'path';
import CliParser from 'applause-cli';
const __dirname = import.meta.url.slice(7, import.meta.url.lastIndexOf("/"));
const package_json_filepath = path.resolve(__dirname, "../package.json");
const cli = new CliParser(package_json_filepath);
cli.argument("foo", "This is a global argument.", true, "boolean")
cli.subcommand("do_stuff", "Do some stuff.")
.argument("input", "The input file to do stuff with.", "default_value_here", "string");
console.log(
cli.parse(process.argv.slice(2))
);
The full API documentation can be found here: https://starbeamrainbowlabs.com/code/applause-cli/.
Argument Types
Several argument types are currently supported. They are specified as the 4th argument to the .argument()
command (either globally or on a specific subcommand):
Type | Meaning |
---|
string | Just a string. |
integer | An integer (parseInt(value, 10) is used) |
float | A floating-point number (parseFloat(value) is used) |
boolean | A boolean true /false value. Unlike other types, arguments with this type do not take an explicit value on the cli (e.g. --foo bar ) - rather their presence on the CLI sets the value to true . This can be overridden though with argument.has_value = true . |
date | Parse the string as a date with new Date(value) |
<function> | Pass a function to do custom parsing. The function provided will be called with a single argument - the value that needs parsing. The return value will be considered the parsed value. |
In addition, a function can be passed instead of a string defining the type of an argument, and that function will be called with a single argument to parse values instead:
cli.argument("foo", "An example argument --foo", 128, function(value) {
return parseInt(value, 10) * 2;
});
Read-world use
Contributing
Contributions are welcome as PRs! Don't forget to say that you donate your contribution under the Mozilla Public License 2.0 in your PR comment.
Licence
This project is licensed under the Mozilla Public License 2.0. See the LICENSE
file in this repository for the full text.