Optionator
JavaScript option parsing and help generation library
Install / Use
/learn @gkz/OptionatorREADME
Optionator
<a name="optionator" />Optionator is a JavaScript/Node.js option parsing and help generation library used by eslint, Grasp, LiveScript, esmangle, escodegen, and many more.
For an online demo, check out the Grasp online demo.
About · Usage · Settings Format · Argument Format
Why?
The problem with other option parsers, such as yargs or minimist, is they just accept all input, valid or not.
With Optionator, if you mistype an option, it will give you an error (with a suggestion for what you meant).
If you give the wrong type of argument for an option, it will give you an error rather than supplying the wrong input to your application.
$ cmd --halp
Invalid option '--halp' - perhaps you meant '--help'?
$ cmd --count str
Invalid value for option 'count' - expected type Int, received value: str.
Other helpful features include reformatting the help text based on the size of the console, so that it fits even if the console is narrow, and accepting not just an array (eg. process.argv), but a string or object as well, making things like testing much easier.
About
Optionator uses type-check and levn behind the scenes to cast and verify input according the specified types.
MIT license. Version 0.9.4
npm install optionator
For updates on Optionator, follow me on twitter.
Optionator is a Node.js module, but can be used in the browser as well if packed with webpack/browserify.
Usage
require('optionator'); returns a function. It has one property, VERSION, the current version of the library as a string. This function is called with an object specifying your options and other information, see the settings format section. This in turn returns an object with three properties, parse, parseArgv, generateHelp, and generateHelpForOption, which are all functions.
var optionator = require('optionator')({
prepend: 'Usage: cmd [options]',
append: 'Version 1.0.0',
options: [{
option: 'help',
alias: 'h',
type: 'Boolean',
description: 'displays help'
}, {
option: 'count',
alias: 'c',
type: 'Int',
description: 'number of things',
example: 'cmd --count 2'
}]
});
var options = optionator.parseArgv(process.argv);
if (options.help) {
console.log(optionator.generateHelp());
}
...
parse(input, parseOptions)
parse processes the input according to your settings, and returns an object with the results.
arguments
- input -
[String] | Object | String- the input you wish to parse - parseOptions -
{slice: Int}- all options optionalslicespecifies how much to slice away from the beginning if the input is an array or string - by default0for string,2for array (works withprocess.argv)
returns
Object - the parsed options, each key is a camelCase version of the option name (specified in dash-case), and each value is the processed value for that option. Positional values are in an array under the _ key.
example
parse(['node', 't.js', '--count', '2', 'positional']); // {count: 2, _: ['positional']}
parse('--count 2 positional'); // {count: 2, _: ['positional']}
parse({count: 2, _:['positional']}); // {count: 2, _: ['positional']}
parseArgv(input)
parseArgv works exactly like parse, but only for array input and it slices off the first two elements.
arguments
- input -
[String]- the input you wish to parse
returns
See "returns" section in "parse"
example
parseArgv(process.argv);
generateHelp(helpOptions)
generateHelp produces help text based on your settings.
arguments
- helpOptions -
{showHidden: Boolean, interpolate: Object}- all options optionalshowHiddenspecifies whether to show options withhidden: truespecified, by default it isfalseinterpolatespecify data to be interpolated inprependandappendtext,{{key}}is the format - eg.generateHelp({interpolate:{version: '0.4.2'}}), will change thisappendtext:Version {{version}}toVersion 0.4.2
returns
String - the generated help text
example
generateHelp(); /*
"Usage: cmd [options] positional
-h, --help displays help
-c, --count Int number of things
Version 1.0.0
"*/
generateHelpForOption(optionName)
generateHelpForOption produces expanded help text for the specified with optionName option. If an example was specified for the option, it will be displayed, and if a longDescription was specified, it will display that instead of the description.
arguments
- optionName -
String- the name of the option to display
returns
String - the generated help text for the option
example
generateHelpForOption('count'); /*
"-c, --count Int
description: number of things
example: cmd --count 2
"*/
Settings Format
When your require('optionator'), you get a function that takes in a settings object. This object has the type:
{
prepend: String,
append: String,
options: [{heading: String} | {
option: String,
alias: [String] | String,
type: String,
enum: [String],
default: String,
restPositional: Boolean,
required: Boolean,
overrideRequired: Boolean,
dependsOn: [String] | String,
concatRepeatedArrays: Boolean | (Boolean, Object),
mergeRepeatedObjects: Boolean,
description: String,
longDescription: String,
example: [String] | String
}],
helpStyle: {
aliasSeparator: String,
typeSeparator: String,
descriptionSeparator: String,
initialIndent: Int,
secondaryIndent: Int,
maxPadFactor: Number
},
mutuallyExclusive: [[String | [String]]],
concatRepeatedArrays: Boolean | (Boolean, Object), // deprecated, set in defaults object
mergeRepeatedObjects: Boolean, // deprecated, set in defaults object
positionalAnywhere: Boolean,
typeAliases: Object,
defaults: Object
}
All of the properties are optional (the Maybe has been excluded for brevities sake), except for having either heading: String or option: String in each object in the options array.
Top Level Properties
prependis an optional string to be placed before the options in the help textappendis an optional string to be placed after the options in the help textoptionsis a required array specifying your options and headings, the options and headings will be displayed in the order specifiedhelpStyleis an optional object which enables you to change the default appearance of some aspects of the help textmutuallyExclusiveis an optional array of arrays of either strings or arrays of strings. The top level array is a list of rules, each rule is a list of elements - each element can be either a string (the name of an option), or a list of strings (a group of option names) - there will be an error if more than one element is presentconcatRepeatedArrayssee description under the "Option Properties" heading - use at the top level is deprecated, if you want to set this for all options, use thedefaultspropertymergeRepeatedObjectssee description under the "Option Properties" heading - use at the top level is deprecated, if you want to set this for all options, use thedefaultspropertypositionalAnywhereis an optional boolean (defaults totrue) - whentrueit allows positional arguments anywhere, whenfalse, all arguments after the first positional one are taken to be positional as well, even if they look like a flag. For example, withpositionalAnywhere: false, the arguments--flag --boom 12 --crackwould have two positional arguments:12and--cracktypeAliasesis an optional object, it allows you to set aliases for types, eg.{Path: 'String'}would allow you to use the typePathas an alias for the typeStringdefaultsis an optional object following the option properties format, which specifies default values for all options. A default will be overridden if manually set. For example, you can dodefault: { type: "String" }to set the default type of all options toString, and then override that default in an individual option by setting thetypeproperty
Heading Properties
headinga required string, the name of the heading
Option Properties
optionthe required name of the option - use dash-case, without the leading dashesaliasis an optional string or array of strings which specify any aliases for the optiontypeis a required string in the type check format, this will be used to cast the inputted value and validate itenumis an optional array of strings, each string will be parsed by levn - the argument value must be one of the resulting values - each potential value must validate against the specifiedtypedefaultis a optional string, which will be parsed by levn and used as the default value if none is set - the value must validate against the specifiedtyperestPositionalis an optional boolean - if set totrue, everything after the option will be taken to be a positional argument, even if it looks like a named argumentrequiredis an optional boolean - if set to `t
