Additional documentation
===
For more details refer to the official [API reference](https://yargs.js.org/docs/#api-reference)
document on the yargs.js.org website.
This document is the Yargs API reference. There are more documentation files in
[`docs` in the Yargs source tree](https://github.com/yargs/yargs/tree/main/docs):
- [Examples](https://github.com/yargs/yargs/blob/main/docs/examples.md)
- [Advanced Topics](https://github.com/yargs/yargs/blob/main/docs/advanced.md)
- [TypeScript usage examples](https://github.com/yargs/yargs/blob/main/docs/typescript.md)
- [Browser usage example](https://github.com/yargs/yargs/blob/main/docs/browser.md)
- [Parsing Tricks](https://github.com/yargs/yargs/blob/main/docs/tricks.md)
API reference
===
You can pass Yargs the `process.argv` without any additional configuration
and it will do its best to parse it into an object:
```javascript
import yargs from 'yargs';
yargs(process.argv.slice(2)).parse()
```
You can also pass in an arbitrary array of arguments:
```javascript
import yargs from 'yargs';
yargs([ '-x', '1', '-y', '2' ]).parse()
```
or pass the arguments to `.parse()` to do the same thing:
```javascript
import yargs from 'yargs';
yargs().parse([ '-x', '1', '-y', '2' ])
```
When passing in the arguments yourself, note that Yargs expects the passed array
to contain only the arguments after the program name, while `process.argv`
usually starts with extra elements. For example, [Node’s
`process.argv`](https://nodejs.org/api/process.html#process_process_argv) array
starts with two extra elements:`process.execPath` and the path to the JavaScript
file being executed. So if you’re getting your arguments from `process.argv` in
Node, pass `process.argv.slice(2)` to Yargs.
***Note:*** Yargs exposes the helper `hideBin`, which handles the
`process.argv.slice` logic for you.
```javascript
import yargs from 'yargs'
import { hideBin } from 'yargs/helpers'
const argv = yargs(hideBin(process.argv)).parse()
```
The rest of these methods below come in just before the terminating
terminating `.parse()`.
.alias(key, alias)
------------------
Set key names as equivalent such that updates to a key will propagate to aliases
and vice-versa.
Optionally `.alias()` can take an object that maps keys to aliases.
Each key of this object should be the canonical version of the option, and each
value should be a string or an array of strings.
.parse()
-----
Get the arguments as a plain old object.
Arguments without a corresponding flag show up in the `argv._` array. Note that elements of `argv._` may be [converted to numbers](/docs/tricks.md#numbers) by default.
The script name or node command is available at `argv.$0` similarly to how `$0`
works in bash or perl.
.array(key)
----------
Tell the parser to interpret `key` as an array. If `.array('foo')` is set,
`--foo foo bar` will be parsed as `['foo', 'bar']` rather than as `'foo'`.
Also, if you use the option multiple times all the values will be flattened in one array
so `--foo foo --foo bar` will be parsed as `['foo', 'bar']`
When the option is used with a positional, use `--` to tell `yargs` to stop adding values to the array.
For example: `--foo foo bar -- val` will be parsed as
```javascript
{
_: ['val'],
foo: ['foo', 'bar']
}
```
.boolean(key)
-------------
Interpret `key` as a boolean. If a non-flag option - unless `true` or `false` - follows `key` in `process.argv`, that string won't get set as the value of `key`.
`key` can be set false explicitly using the `--no-` prefix, [more](/docs/tricks.md#negate).
If `key` is an array, interpret all the elements as booleans.
.check(fn, [global=true])
----------
Check that certain conditions are met in the provided arguments.
`fn` is called with the parsed `argv` hash.
If `fn` throws anything, returns an instance of error, returns a string, or
returns any non-truthy value, Yargs will show the thrown error and usage
information. Yargs will then exit, unless [`.exitProcess()`](#exitprocess) was
used to prevent Yargs from exiting after a failed check.
`global` indicates whether `check()` should be enabled both
at the top-level and for each sub-command.
```js
import yargs from 'yargs'
const argv = yargs(process.argv.slice(2))
.check((argv, options) => {
const filePaths = argv._
if (filePaths.length > 1) {
throw new Error("Only 0 or 1 files may be passed.")
} else {
return true // tell Yargs that the arguments passed the check
}
})
.parse()
```
.choices(key, choices)
----------------------
Limit valid values for `key` to a predefined set of `choices`, given as an array
or as an individual value.
```js
import yargs from 'yargs'
const argv = yargs(process.argv.slice(2))
.alias('i', 'ingredient')
.describe('i', 'choose your sandwich ingredients')
.choices('i', ['peanut-butter', 'jelly', 'banana', 'pickles'])
.help('help')
.parse()
```
If this method is called multiple times, all enumerated values will be merged
together. Choices are generally strings or numbers, and value matching is
case-sensitive.
Optionally `.choices()` can take an object that maps multiple keys to their
choices.
Choices can also be specified as `choices` in the object given to `option()`.
```js
import yargs from 'yargs'
const argv = yargs(process.argv.slice(2))
.option('size', {
alias: 's',
describe: 'choose a size',
choices: ['xs', 's', 'm', 'l', 'xl']
})
.parse()
```
.coerce(key, fn)
----------------
Provide a function to coerce or transform the value(s) given on the
command line for `key`.
The coercion function should accept one argument, representing the parsed value from
the command line (an array if multiple values are parsed for the key), and should
return a new value or throw an error. The returned value will be used as the value for
`key` (or one of its aliases) in `argv`.
If the function throws, the error will be treated as a validation
failure, delegating to either a custom [`.fail()`](#fail) handler or printing the error message in the console.
Coercion will be applied to a value after
all other modifications, such as [`.normalize()`](#normalize).
_Examples:_
```js
import { readFile } from 'node:fs/promises';
import yargs from 'yargs';
const argv = await yargs(process.argv.slice(2))
.coerce('file', async (arg) => {
const content = await readFile(arg, 'utf8');
return JSON.parse(content);
})
.parseAsync();
```
Optionally `.coerce()` can take an object that maps several keys to their
respective coercion function.
```js
import yargs from 'yargs'
const argv = yargs(process.argv.slice(2))
.coerce({
date: Date.parse,
json: JSON.parse
})
.parse()
```
You can also map the same function to several keys at one time. Just pass an array of keys as the first argument to `.coerce()`:
```js
import yargs from 'yargs'
import { resolve } from 'node:path';
const argv = yargs(process.argv.slice(2))
.coerce(['src', 'dest'], resolve)
.parse()
```
If you are using dot-notion or arrays, .e.g., `user.email` and `user.password`, coercion will be applied to the final object that has been parsed:
```js
// --user.name Batman --user.password 123
// gives us: {name: 'batman', password: '[SECRET]'}
import yargs from 'yargs'
const argv = yargs(process.argv.slice(2))
.option('user')
.coerce('user', opt => {
opt.name = opt.name.toLowerCase()
opt.password = '[SECRET]'
return opt
})
.parse()
```
.commandDir(directory, [opts])
------------------------------
Apply command modules from a directory relative to the module calling this method.
`directory` is a relative directory path as a string (required).
`opts` is an options object (optional). The following options are valid:
`recurse`: Look for command modules in all subdirectories and apply them as a flattened
(non-hierarchical) list.
`extensions`: The types of files to look for when requiring command modules.
`visit`: A synchronous function called for each command module encountered. Accepts
`commandObject`, `pathToFile`, and `filename` as arguments. Returns `commandObject`
to include the command; any falsy value to exclude/skip it.
`include`: Allow list certain modules. Either a regex or callback can be provided. Return `true` from the callback to load the file.
`exclude`: Block list certain modules. Either a regex or callback can be provided. Return `true` from the callback to skip the file.
.command(cmd, desc, [builder], [handler])
-----------------------------------------
.command(cmd, desc, [module])
-----------------------------
.command(module)
----------------
Define the commands exposed by your application.
`cmd` should be a string representing the command or an array of strings
representing the command and its aliases. Read more about command aliases in the
subsection below.
Use `desc` to provide a description for each command your application accepts (the
values stored in `argv._`). Set `desc` to `false` to create a hidden command.
Hidden commands don't show up in the help output and aren't available for
completion.
Optionally, you can provide a `builder` object to give hints about the
options that your command accepts:
```js
import yargs from 'yargs'
import { hideBin } from 'yargs/helpers'
yargs()
.command('get', 'make a get HTTP request', {
url: {
alias: 'u',
default: 'http://yargs.js.org/'
}
})
.help()
.parse(hideBin(process.argv))
```
`builder` can also be a function. This function is executed
with a `yargs` instance, which can be used to provide command-specific
configuration, and the boolean `helpOrVersionSet`, which indicates whether or
not the `--help` or `--version` flag was set prior to calling the
builder.
```js
import yargs from 'yargs'
import { hideBin } from 'yargs/helpers'
yargs()
.command('get', 'make a get HTTP request', function (yargs, helpOrVersionSet) {
return yargs.option('url', {
alias: 'u',
default: 'http://yargs.js.org/'
})
})
.help()
.parse(hideBin(process.argv))
```
You can also provide a handler function, which will be executed with the
parsed `argv` object:
```js
import yargs from 'yargs'
import { hideBin } from 'yargs/helpers'
yargs()
.command(
'get',
'make a get HTTP request',
function (yargs) {
return yargs.option('u', {
alias: 'url',
describe: 'the URL to make an HTTP request to'
})
},
function (argv) {
console.log(argv.url)
}
)
.help()
.parse(hideBin(process.argv))
```
***Note:*** `.parse()` should only be used at the top level, not inside a command's builder function.
Please see [Advanced Topics: Commands](https://github.com/yargs/yargs/blob/main/docs/advanced.md#commands) for a thorough
discussion of the advanced features exposed in the Command API.
.completion([cmd], [description], [fn])
---------------------------------------
Enable bash/zsh-completion shortcuts for commands and options.
`cmd`: When present in `argv._`, will result in the `.bashrc` or `.zshrc` completion script
being outputted.
To enable bash/zsh completions, you can either:
1. Concat the generated script to your
`.bashrc` or `.bash_profile` (or `.zshrc` for zsh).
e.g. `./command completion > ~/.bashrc`
2. If you have `bash-completion` installed, write it to a file in
`$XDG_DATA_HOME/bash-completion` (or `~/.local/share/bash-completion`),
with the same name as the command.
e.g. `./command completion > ${XDG_DATA_HOME:-$HOME/.local/share}/bash-completion/command`
3. For Zsh, write it to a file in your `$fpath` named
`_{{app_name}}_yargs_completions` where `{{app_name}}` is your
command name.
e.g. `./command completion > /usr/local/share/zsh/site-functions/_command_yargs_completions`
`description`: Provide a description in your usage instructions for the command
that generates the completion scripts.
`fn`: Rather than relying on yargs' default completion functionality, which
shiver me timbers is pretty awesome, you can provide your own completion
method.
If invoked without parameters, `.completion()` will make `completion` the command to output
the completion script.
```js
import yargs from 'yargs'
import { hideBin } from 'yargs/helpers'
const argv = yargs(hideBin(process.argv))
.completion('completion', function(current, argv) {
// 'current' is the current command being completed.
// 'argv' is the parsed arguments so far.
// simply return an array of completions.
return [
'foo',
'bar'
];
})
.parse();
```
You can also provide asynchronous completions.
```js
import yargs from 'yargs'
import { hideBin } from 'yargs/helpers'
const argv = yargs(hideBin(process.argv))
.completion('completion', function(current, argv, done) {
setTimeout(function() {
done([
'apple',
'banana'
]);
}, 500);
})
.parse();
```
But wait, there's more! You can return an asynchronous promise.
```js
import yargs from 'yargs'
import { hideBin } from 'yargs/helpers'
const argv = yargs(hideBin(process.argv))
.completion('completion', function(current, argv) {
return new Promise(function (resolve, reject) {
setTimeout(function () {
resolve(['apple', 'banana'])
}, 10)
})
})
.parse();
```
Using default completions in a custom implementation. When invoked with no arguments, `completionFilter` will fallback to the default completion function. There is no need to call `done` in this case. When provided with a callback function, you can get access to `defaultCompletions` and call `done` with your processed version of them.
```js
import yargs from 'yargs'
import { hideBin } from 'yargs/helpers'
const argv = yargs(hideBin(process.argv))
.completion('completion', function(current, argv, completionFilter, done) {
// if 'apple' present return default completions
if (argv._.includes('apple')) {
completionFilter();
} else {
completionFilter((err, defaultCompletions) => {
const filteredCompletions = defaultCompletions.filter(
completion => !completion.includes('banana'),
);
// else return default completions w/o 'banana'
done(filteredCompletions);
});
}
})
.parse();
```
.config([key], [description], [parseFn])
-------------------------------------------------------------
.config(object)
---------------
Tells the parser that if the option specified by `key` is passed in, it
should be interpreted as a path to a JSON config file. The file is loaded
and parsed, and its properties are set as arguments. Because the file is
loaded using Node's require(), the filename MUST end in `.json` to be
interpreted correctly.
If invoked without parameters, `.config()` will make `--config` the option to pass the JSON config file.
An optional `description` can be provided to customize the config (`key`) option
in the usage string.
An optional `parseFn` can be used to provide a custom parser. The parsing
function must be synchronous, and should return an object containing
key value pairs or an error.
```js
import yargs from 'yargs'
const argv = yargs(process.argv.slice(2))
.config('settings', function (configPath) {
return JSON.parse(fs.readFileSync(configPath, 'utf-8'))
})
.parse()
```
You can also pass an explicit configuration `object`, it will be parsed
and its properties will be set as arguments.
```js
import yargs from 'yargs'
const argv = yargs(process.argv.slice(2))
.config({foo: 1, bar: 2})
.parse()
console.log(argv)
```
```
$ node test.js
{ _: [],
foo: 1,
bar: 2,
'$0': 'test.js' }
```
### `extends` Keyword
`config` and `pkgConf` can provide the `extends` keyword to
indicate that configuration should inherit from another location.
The value of extends can be either a relative or absolute path to a JSON
configuration file, e.g.,
```js
yargs().config({
extends: './configs/a.json',
logLevel: 'verbose'
})
```
Or, a module can be provided (this is useful for creating functionality like
[babel-presets](https://babeljs.io/docs/plugins/)).
**my-library.js**
```js
yargs().pkgConf('nyc')
```
**consuming package.json**
```json
{
"nyc": {
"extends": "nyc-babel-config"
}
}
```
Where `nyc-babel-config` is a package that exports configuration in its index.
.conflicts(x, y)
----------------------------------------------
Given the key `x` is set, the key `y` must not be set. `y` can either be a single
string or an array of argument names that `x` conflicts with.
Optionally `.conflicts()` can accept an object specifying multiple conflicting keys.
.count(key)
------------
Interpret `key` as a boolean flag, but set its parsed value to the number of
flag occurrences rather than `true` or `false`. Default value is thus `0`.
.default(key, value, [description])
---------------------------------------------------------
.defaults(key, value, [description]) [DEPRECATED]
------------------------------------
**Note:** The `.defaults()` alias is deprecated. It will be removed in the next
major version. Use `.default()` instead.
Set `argv[key]` to `value` if no option was specified in `process.argv`.
Optionally `.default()` can take an object that maps keys to default values.
But wait, there's more! The default value can be a `function` which returns
a value. The name of the function will be used in the usage string:
```js
import yargs from 'yargs'
const argv = yargs(process.argv.slice(2))
.default('random', function randomValue() {
return Math.random() * 256;
}).parse();
```
Optionally, `description` can also be provided and will take precedence over
displaying the value in the usage instructions:
```js
.default('timeout', 60000, '(one-minute)')
```
.demand(count, [max], [msg]) [DEPRECATED]
--------------------
`demand()` has been deprecated, please instead see [`demandOption()`](#demandOption) and
[`demandCommand()`](#demandCommand).
.demandOption(key, [msg | boolean])
------------------------------
.demandOption(key, msg)
------------------------------
If `key` is a string, show the usage information and exit if `key` wasn't
specified in `process.argv`.
If `key` is an array, demand each element.
If a `msg` string is given, it will be printed when the argument is missing, instead of the standard error message.
```javascript
// demand an array of keys to be provided
import yargs from 'yargs'
yargs(process.argv.slice(2))
.option('run', {
alias: 'r',
describe: 'run your program'
})
.option('path', {
alias: 'p',
describe: 'provide a path to file'
})
.option('spec', {
alias: 's',
describe: 'program specifications'
})
.demandOption(['run', 'path'], 'Please provide both run and path arguments to work with this tool')
.help()
.parse()
```
which will provide the following output:
```bash
Options:
--run, -r run your program [required]
--path, -p provide a path to file [required]
--spec, -s program specifications
--help Show help [boolean]
Missing required arguments: run, path
Please provide both run and path arguments to work with this tool
```
If a `boolean` value is given, it controls whether the option is demanded;
this is useful when using `.options()` to specify command line parameters.
```javascript
// demand individual options within the option constructor
import yargs from 'yargs'
yargs(process.argv.slice(2))
.options({
'run': {
alias: 'r',
describe: 'run your program',
demandOption: true
},
'path': {
alias: 'p',
describe: 'provide a path to file',
demandOption: true
},
'spec': {
alias: 's',
describe: 'program specifications'
}
})
.help()
.parse()
```
which will provide the following output:
```bash
Options:
--run, -r run your program [required]
--path, -p provide a path to file [required]
--spec, -s program specifications
--help Show help [boolean]
Missing required arguments: run, path
```
.demandCommand([min=1], [minMsg])
------------------------------
.demandCommand([min=1], [max], [minMsg], [maxMsg])
------------------------------
Demand in context of commands. You can demand a minimum and a maximum number a user can have within your program, as well as provide corresponding error messages if either of the demands is not met.
```javascript
import yargs from 'yargs'
yargs(process.argv.slice(2))
.command({
command: 'configure [value]',
aliases: ['config', 'cfg'],
describe: 'Set a config variable',
builder: (yargs) => yargs.default('value', 'true'),
handler: (argv) => {
console.log(`setting ${argv.key} to ${argv.value}`)
}
})
// provide a minimum demand and a minimum demand message
.demandCommand(1, 'You need at least one command before moving on')
.help()
.parse()
```
which will provide the following output:
```bash
Commands:
configure [value] Set a config variable [aliases: config, cfg]
Options:
--help Show help [boolean]
You need at least one command before moving on
```
_Note: in `minMsg` and `maxMsg`, every occurrence of `$0` will be replaced
with the observed value, and every instance of `$1` will be replaced with the
expected value._
.deprecateOption(key, [msg | boolean])
--------------------
Shows a `[deprecated]` notice in front of the option.
```javascript
import yargs from 'yargs'
yargs(process.argv.slice(2))
.option('old')
.deprecateOption('old')
.option('new')
.parse()
```
```bash
Options:
--old [deprecated]
--new
```
You can also specify a message
```javascript
import yargs from 'yargs'
yargs(process.argv.slice(2))
.option('old')
.deprecateOption('old', 'use --new')
.option('new')
.parse()
```
```bash
Options:
--old [deprecated: use --new]
--new
```
You can also use it within the option constructor
```javascript
import yargs from 'yargs'
yargs(process.argv.slice(2))
.option('old', { deprecated: true })
.parse()
```
.describe(key, desc)
--------------------
Describe a `key` for the generated usage information.
Optionally `.describe()` can take an object that maps keys to descriptions.
.hide(key)
--------------------
Hides a `key` from the generated usage information. Unless a `--show-hidden` option is also passed with `--help` (see [`showHidden()`](#showHidden)).
.detectLocale(boolean)
-----------
Should yargs attempt to detect the os' locale? Defaults to `true`.
.env([prefix])
--------------
Tell yargs to parse environment variables matching the given prefix and apply
them to argv as though they were command line arguments.
Use the "\_\_" separator in the environment variable to indicate nested options.
(e.g. prefix_nested__foo => nested.foo)
If this method is called with no argument or with an empty string or with `true`,
then all env vars will be applied to argv.
Program arguments are defined in this order of precedence:
1. Command line args
2. Env vars
3. Config file/objects
4. Configured defaults
```js
import yargs from 'yargs'
const argv = yargs(process.argv.slice(2))
.env('MY_PROGRAM')
.option('f', {
alias: 'fruit-thing',
default: 'apple'
})
.parse()
console.log(argv)
```
```
$ node fruity.js
{ _: [],
f: 'apple',
'fruit-thing': 'apple',
fruitThing: 'apple',
'$0': 'fruity.js' }
```
```
$ MY_PROGRAM_FRUIT_THING=banana node fruity.js
{ _: [],
fruitThing: 'banana',
f: 'banana',
'fruit-thing': 'banana',
'$0': 'fruity.js' }
```
```
$ MY_PROGRAM_FRUIT_THING=banana node fruity.js -f cat
{ _: [],
f: 'cat',
'fruit-thing': 'cat',
fruitThing: 'cat',
'$0': 'fruity.js' }
```
Env var parsing is disabled by default, but you can also explicitly disable it
by calling `.env(false)`, e.g. if you need to undo previous configuration.
.epilog(str)
------------
.epilogue(str)
--------------
A message to print at the end of the usage instructions, e.g.
```js
import yargs from 'yargs'
const argv = yargs(process.argv.slice(2))
.epilogue('for more information, find our manual at http://example.com')
.parse();
```
.example(cmd, desc)
-------------------
.example([[cmd1, desc1], [cmd2, desc2], ...])
-------------------
Give some example invocations of your program. Inside `cmd`, the string
`$0` will get interpolated to the current script name or node command for the
present script similar to how `$0` works in bash or perl.
Examples will be printed out as part of the help message.
If you want to add multiple examples at once, just pass an array of examples, e.g
```js
import yargs from 'yargs'
yargs(process.argv.slice(2))
.example([
['$0 --config "~/config.json"', 'Use custom config'],
['$0 --safe', 'Start in safe mode']
])
.parse();
```
.exitProcess(enable)
----------------------------------
By default, yargs exits the process when the user passes a help flag, the user
uses the `.version` functionality, validation fails, or the command handler
fails. Calling `.exitProcess(false)` disables this behavior, enabling further
actions after yargs have been validated.
***Note:*** `.exitProcess(false)` should not be used when [`.command()`](#command)
is called with a handler returning a promise, as it would lead to a duplicated
error message when this promise rejects
.exit(code, err)
---------
Manually indicate that the program should exit, and provide context about why we
wanted to exit. Follows the behavior set by `.exitProcess()`.
.fail(fn | boolean)
---------
Method to execute when a failure occurs, rather than printing the failure message.
Providing `false` as a value for `fn` can be used to prevent yargs from
exiting and printing a failure message. This is useful if you wish to
handle failures yourself using `try`/`catch` and [`.getHelp()`](#get-help).
`fn` is called with the failure message that would have been printed, the
`Error` instance originally thrown and yargs state when the failure
occurred.
```js
import yargs from 'yargs'
const argv = yargs(process.argv.slice(2))
.fail(function (msg, err, yargs) {
if (err) throw err // preserve stack
console.error('You broke it!')
console.error(msg)
console.error('You should be doing', yargs.help())
process.exit(1)
})
.parse()
```
.getCompletion(args, done);
---------------------------
Allows to programmatically get completion choices for any line.
`args`: An array of the words in the command line to complete.
`done`: Optional callback which will be invoked with `err`, or the resulting completions.
If no `done` callback is provided, `getCompletion` returns a promise that
resolves with the completions.
For example:
```js
import yargs from 'yargs'
yargs()
.option('foobar')
.option('foobaz')
.completion()
.getCompletion(['./test.js', '--foo'], function (_err, completions) {
console.log(completions)
})
```
Outputs the same completion choices as `./test.js --foo`TAB: `--foobar` and `--foobaz`
.getHelp()
---------------------------
Returns a promise that resolves with a `string` equivalent to what would
be output by [`.showHelp()`](#show-help), or by running yargs with `--help`.
.global(globals, [global=true])
------------
Indicate that an option (or group of options) should not be reset when a command
is executed, as an example:
```js
import yargs from 'yargs'
const argv = yargs(process.argv.slice(2))
.option('a', {
alias: 'all',
default: true,
global: false
})
.option('n', {
alias: 'none',
default: true,
global: false
})
.command('foo', 'foo command', function (yargs) {
return yargs.option('b', {
alias: 'bar'
})
})
.help('help')
.global('a')
.parse()
```
If the `foo` command is executed the `all` option will remain, but the `none`
option will have been eliminated.
Options default to being global.
.group(key(s), groupName)
--------------------
Given a key, or an array of keys, places options under an alternative heading
when displaying usage instructions, e.g.,
```js
import yargs from 'yargs'
yargs(['--help'])
.help()
.group('batman', 'Heroes:')
.describe('batman', "world's greatest detective")
.wrap(null)
.parse()
```
***
Heroes:
--batman world's greatest detective
Options:
--help Show help [boolean]
.help()
-----------------------------------------
.help([option | boolean])
-----------------------------------------
.help([option, [description]])
-----------------------------------------
Configure an (e.g. `--help`) and implicit command that displays the usage
string and exits the process. By default yargs enables help on the `--help` option.
If present, the `description` parameter customizes the description of
the help option in the usage string.
If the boolean argument `false` is provided, it will disable `--help`.
Note that any multi-char aliases (e.g. `help`) used for the help option will
also be used for the implicit command. If there are no multi-char aliases (e.g.
`h`), then all single-char aliases will be used for the command.
If invoked without parameters, `.help()` will use `--help` as the option and
`help` as the implicit command to trigger help output.
Example:
```js
import yargs from 'yargs'
const yargs = yargs(['--info'])
.usage("$0 -operand1 number -operand2 number -operation [add|subtract]")
.help('info')
.parse()
```
.implies(x, y)
--------------
Given the key `x` is set, it is required that the key `y` is set. `y` can either
be the name of an argument to imply, a number indicating the
position of an argument or an array of multiple implications to associate with `x`.
Optionally `.implies()` can accept an object specifying multiple implications.
.locale()
---------
Return the locale that yargs is currently using.
By default, yargs will auto-detect the operating system's locale so that
yargs-generated help content will display in the user's language.
To override this behavior with a static locale, pass the desired locale as a
string to this method (see below).
.locale(locale)
---------------
Override the auto-detected locale from the user's operating system with a static
locale. Note that the OS locale can be modified by setting/exporting the `LC_ALL`
environment variable.
```js
import yargs from 'yargs'
const argv = yargs(process.argv.slice(2))
.usage('./$0 - follow ye instructions true')
.option('option', {
alias: 'o',
describe: "'tis a mighty fine option",
demandOption: true
})
.command('run', "Arrr, ya best be knowin' what yer doin'")
.example('$0 run foo', "shiver me timbers, here's an example for ye")
.help('help')
.wrap(70)
.locale('pirate')
.parse()
```
***
```shell
./test.js - follow ye instructions true
Choose yer command:
run Arrr, ya best be knowin' what yer doin'
Options for me hearties!
--option, -o 'tis a mighty fine option [requi-yar-ed]
--help Parlay this here code of conduct [boolean]
Ex. marks the spot:
test.js run foo shiver me timbers, here's an example for ye
Ye be havin' to set the followin' argument land lubber: option
```
Locales currently supported:
* **be:** Belarusian.
* **cs:** Czech.
* **de:** German.
* **en:** American English.
* **es:** Spanish.
* **fi:** Finnish.
* **fr:** French.
* **he:** Hebrew.
* **hi:** Hindi.
* **hu:** Hungarian.
* **id:** Indonesian.
* **it:** Italian.
* **ja:** Japanese.
* **ko:** Korean.
* **nb:** Norwegian Bokmål.
* **nl:** Dutch.
* **nn:** Norwegian Nynorsk.
* **pirate:** American Pirate.
* **pl:** Polish.
* **pt:** Portuguese.
* **pt_BR:** Brazilian Portuguese.
* **ru:** Russian.
* **th:** Thai.
* **tr:** Turkish.
* **uk_UA:** Ukrainian (Ukraine).
* **uz:** Uzbek.
* **zh_CN:** Chinese (Mainland China).
* **zh_TW:** Chinese (Taiwan).
To submit a new translation for yargs:
1. use `./locales/en.json` as a starting point.
2. submit a pull request with the new locale file.
*The [Microsoft Terminology Search](https://www.microsoft.com/en-us/language/Search) can be useful for finding the correct terminology in your locale.*
.middleware(callbacks, [applyBeforeValidation])
------------------------------------
Define global middleware functions to be called first, in list order, for all cli command.
The `callbacks` parameter can be a function or a list of functions. Each callback gets passed a reference to argv.
```js
import yargs from 'yargs'
const mwFunc1 = argv => console.log('I\'m a middleware function');
const mwFunc2 = argv => console.log('I\'m another middleware function');
yargs()
.command('myCommand', 'some command', {}, function(argv){
console.log('Running myCommand!');
})
.middleware([mwFunc1, mwFunc2]).parse(process.argv.slice(2));
```
When calling `myCommand` from the command line, mwFunc1 gets called first, then mwFunc2, and finally the command's handler. The console output is:
```
I'm a middleware function
I'm another middleware function
Running myCommand!
```
Middleware can be applied before validation by setting the second parameter to `true`. This will execute the middleware prior to validation checks, but after parsing.
Middleware is passed two parameters `argv`, the current parsed options object,
and `yargs` the yargs instance itself, which provides contextual information
about the current state of parsing.
A modified `argv` object will ultimately be what is passed to a command's
handler function.
```js
// populating home directory from an environment variable.
import yargs from 'yargs'
yargs(process.argv.slice(2))
.middleware(function (argv) {
if (process.env.HOME) argv.home = process.env.HOME
}, true)
.command('configure-home', "do something with a user's home directory",
{
'home': {
'demand': true,
'string': true
}
},
function(argv) {
console.info(`we know the user's home directory is ${argv.home}`)
}
)
.parse()
```
Example, Using middleware to apply a transformation on argv after `choices` have
been enforced ([see #756](https://github.com/yargs/yargs/issues/756)):
```js
import yargs from 'yargs'
yargs()
.command('$0', 'accept username', () => {}, (argv) => {
// The middleware will have been applied before the default
// command is called:
console.info(argv);
})
.choices('user', ['Goofy', 'Miky'])
.middleware(argv => {
console.info('gots here');
const user = argv.user;
switch (user) {
case 'Goofy':
argv.user = {
firstName: 'Mark',
lastName: 'Pipe',
};
break;
case 'Miky':
argv.user = {
firstName: 'Elon',
lastName: 'Stone',
};
break;
}
return argv;
})
.parse('--user Miky');
```
.nargs(key, count)
-----------
The number of arguments that should be consumed after a key. This can be a
useful hint to prevent parsing ambiguity. For example:
```js
import yargs from 'yargs'
const argv = yargs()
.nargs('token', 1)
.parse(['--token', '-my-token']);
```
parses as:
`{ _: [], token: '-my-token', '$0': 'node test' }`
Optionally `.nargs()` can take an object of `key`/`narg` pairs.
.normalize(key)
---------------
The key provided represents a path and should have `path.normalize()` applied.
.number(key)
------------
Tell the parser to always interpret `key` as a number.
If `key` is an array, all elements will be parsed as numbers.
If the option is given on the command line without a value, `argv` will be
populated with `undefined`.
If the value given on the command line cannot be parsed as a number, `argv` will
be populated with `NaN`.
Note that decimals, hexadecimals, and scientific notation are all accepted.
```js
import yargs from 'yargs'
const argv = yargs(process.argv.slice(2))
.number('n')
.number(['width', 'height'])
.parse()
```
.option(key, [opt])
-----------------
.options(key, [opt])
------------------
This method can be used to make yargs aware of options that _could_
exist. You can also pass an `opt` object which can hold further
customization, like `.alias()`, `.demandOption()` etc. for that option.
For example:
```javascript
import yargs from 'yargs'
const argv = yargs(process.argv.slice(2))
.option('f', {
alias: 'file',
demandOption: true,
default: '/etc/passwd',
describe: 'x marks the spot',
type: 'string'
})
.parse()
;
```
is the same as
```javascript
import yargs from 'yargs'
const argv = yargs(process.argv.slice(2))
.alias('f', 'file')
.demandOption('f')
.default('f', '/etc/passwd')
.describe('f', 'x marks the spot')
.string('f')
.parse()
;
```
Optionally `.options()` can take an object that maps keys to `opt` parameters.
```javascript
import yargs from 'yargs'
const argv = yargs(process.argv.slice(2))
.options({
'f': {
alias: 'file',
demandOption: true,
default: '/etc/passwd',
describe: 'x marks the spot',
type: 'string'
}
})
.parse()
;
```
Valid `opt` keys include:
- `alias`: string or array of strings, alias(es) for the canonical option key, see [`alias()`](#alias)
- `array`: boolean, interpret option as an array, see [`array()`](#array)
- `boolean`: boolean, interpret option as a boolean flag, see [`boolean()`](#boolean)
- `choices`: value or array of values, limit valid option arguments to a predefined set, see [`choices()`](#choices)
- `coerce`: function, coerce or transform parsed command line values into another value, see [`coerce()`](#coerce)
- `config`: boolean, interpret option as a path to a JSON config file, see [`config()`](#config)
- `configParser`: function, provide a custom config parsing function, see [`config()`](#config)
- `conflicts`: string or array of strings, require certain keys not to be set, see [`conflicts()`](#conflicts)
- `count`: boolean, interpret option as a count of boolean flags, see [`count()`](#count)
- `default`: value, set a default value for the option, see [`default()`](#default)
- `defaultDescription`: string, use this description for the default value in help content, see [`default()`](#default)
- `demandOption`: boolean or string, demand the option be given, with optional error message, see [`demandOption()`](#demandOption)
- `deprecate`/`deprecated`: boolean or string, mark option as deprecated, see [`deprecateOption()`](#deprecateOption)
- `desc`/`describe`/`description`: string, the option description for help content, see [`describe()`](#describe)
- `global`: boolean, indicate that this key should not be [reset](#reset) when a command is invoked, see [`global()`](#global)
- `group`: string, when displaying usage instructions place the option under an alternative group heading, see [`group()`](#group)
- `hidden`: don't display option in help output.
- `implies`: string or array of strings, require certain keys to be set, see [`implies()`](#implies)
- `nargs`: number, specify how many arguments should be consumed for the option, see [`nargs()`](#nargs)
- `normalize`: boolean, apply `path.normalize()` to the option, see [`normalize()`](#normalize)
- `number`: boolean, interpret option as a number, [`number()`](#number)
- `requiresArg`: boolean, require the option be specified with a value, see [`requiresArg()`](#requiresArg)
- `skipValidation`: boolean, skips validation if the option is present, see [`skipValidation()`](#skipValidation)
- `string`: boolean, interpret option as a string, see [`string()`](#string)
- `type`: one of the following strings
- `'array'`: synonymous for `array: true`, see [`array()`](#array)
- `'boolean'`: synonymous for `boolean: true`, see [`boolean()`](#boolean)
- `'count'`: synonymous for `count: true`, see [`count()`](#count)
- `'number'`: synonymous for `number: true`, see [`number()`](#number)
- `'string'`: synonymous for `string: true`, see [`string()`](#string)
.parse([args], [context], [parseCallback])
------------
Returns the `argv` object. `args` may either be a pre-processed argv array, or a raw argument string.
A `context` object can optionally be given as the second argument to `parse()`, providing a
useful mechanism for passing state information to commands:
```js
import yargs from 'yargs'
const parser = yargs()
.command('lunch-train ', 'start lunch train', function () {}, function (argv) {
console.log(argv.restaurant, argv.time)
})
.parse("lunch-train rudy's", {time: '12:15'})
```
A `parseCallback` can also be provided to `.parse()`. If a callback is given, it will be invoked with three arguments:
1. `err`: populated if any validation errors raised while parsing.
2. `argv`: the parsed argv object.
3. `output`: any text that would have been output by yargs to the terminal, had a
callback not been provided.
```js
import yargs from 'yargs'
// providing the `fn` argument to `parse()` runs yargs in headless mode, this
// makes it easy to use yargs in contexts other than the CLI, e.g., writing
// a chat-bot.
const parser = yargs()
.command('lunch-train