Smart Arg
is a forked repo of Arg, with smart help and version logging.
Use Yarn or NPM to install.
$ yarn add smartarg
or
$ npm install smartarg
all examples are in type script
import SmartArg from "smartarg";
interface args {
"--say": string,
"--secret": boolean
}
const args: args = new SmartArg<args>()
.name("SmartArg")
.version("0.0.1")
.description("Forked repo of Arg, with smart help and version logging")
.option(["-s", "--say"], String, "prints the value of --say")
.option(["--secret"], Boolean, "prints a secret")
.smartParse()
if (args["--say"])
console.log(`You asked me to say ${args["--say"]}`);
if (args["--secret"])
console.log("Checkout @eadded/firejs. Best React Static Generator");
Output on -h
name(string)
specify project name
version(string)
specify project version
description(string)
specify project description
usage(string)
specify commandline usage, default : name
examples(string)
specify an example, default : name
-h
primaryColor(number)
specify ANSI color code, default : 1
secondaryColor(number)
specify ANSI color code, default : 33
smartParse(config)
terminates the program after printing help on [-h,--help]
and version on [-v,--version]
, else returns result
parse(config)
returns result
It returns an object with any values present on the command-line (missing options are thus missing from the resulting object). SmartArg performs no validation/requirement checking - we leave that up to the application.
All parameters that aren't consumed by options (commonly referred to as "extra" parameters)
are added to result._
, which is always an array (even if no extra parameters are passed,
in which case an empty array is returned).
For example:
$ node ./hello.js --verbose -vvv --port=1234 -n 'My name' foo bar --tag qux --tag=qix -- --foobar
// test.js
import SmartArg, {COUNT} from "smartarg";
interface args {
"--verbose": string,
"--port": boolean,
"--name": string,
"--tag": [string],
"--label": string
}
const args: args = new SmartArg<args>()
.option(["-v", "--verbose"], COUNT, "Counts the number of times --verbose is passed")
.option(["-p", "--port"], COUNT, "Counts the number of times --verbose is passed")
.option(["-n", "--name"], String, "Counts the number of times --verbose is passed")
.option(["-t", "--tag"], [String], "Counts the number of times --verbose is passed")
.option(["--label"], COUNT, "Counts the number of times --verbose is passed")
.parse();
console.log(args);
/*
{
_: ["foo", "bar", "--foobar"],
'--port': 1234,
'--verbose': 4,
'--name': "My name",
'--tag': ["qux", "qix"]
}
*/
The values for each key=>value pair is either a type (function or [function]) or a string (indicating an alias).
-
In the case of a function, the string value of the argument's value is passed to it, and the return value is used as the ultimate value.
-
In the case of an array, the only element must be a type function. Array types indicate that the argument may be passed multiple times, and as such the resulting value in the returned object is an array with all of the values that were passed using the specified flag.
-
In the case of a string, an alias is established. If a flag is passed that matches the key, then the value is substituted in its place.
Type functions are passed three arguments:
- The parameter value (always a string)
- The parameter name (e.g.
--label
) - The previous value for the destination (useful for reduce-like operations or for supporting
-v
multiple times, etc.)
This means the built-in String
, Number
, and Boolean
type constructors "just work" as type functions.
Note that Boolean
and [Boolean]
have special treatment - an option argument is not consumed or passed, but instead true
is
returned. These options are called "flags".
For custom handlers that wish to behave as flags, you may pass the function through flag()
:
import SmartArg, {flag} from "./SmartArg";
const argv = ['--foo', 'bar', '-ff', 'baz', '--foo', '--foo', 'qux', '-fff', 'qix'];
function myHandler(value, argName, previousValue) {
/* `value` is always `true` */
return 'na ' + (previousValue || 'batman!');
}
interface args {
"--foo": string
}
const args = new SmartArg<args>()
.option(["-f","--foo"], flag(myHandler),"")
.parse({argv});
console.log(args);
/*
{
_: ['bar', 'baz', 'qux', 'qix'],
'--foo': 'na na na na na na na na batman!'
}
*/
As well, SmartArg
supplies a helper argument handler called COUNT
, which equivalent to a [Boolean]
argument's .length
property - effectively counting the number of times the boolean flag, denoted by the key, is passed on the command line.
Object passed to parse()
or smartParse()
specifies parsing options to modify the behavior.
If you have already sliced or generated a number of raw arguments to be parsed (as opposed to letting SmartArg
slice them from process.argv
) you may specify them in the argv
option.
When permissive
set to true
, SmartArg
will push any unknown arguments
onto the "extra" argument array (result._
) instead of throwing an error about
an unknown flag.
When stopAtPositional
is set to true
, SmartArg
will halt parsing at the first
positional argument.
Some errors that SmartArg
throws provide a .code
property in order to aid in recovering from user error, or to
differentiate between user error and developer error (bug).
If an unknown option (not defined in the spec object) is passed, an error with code ARG_UNKNOWN_OPTION
will be thrown
Copyright (C) 2020 Aniket Prajapati
Licensed under the MIT LICENSE