commander と yargs はどちらも Node.js 環境で CLI(コマンドラインインターフェース)ツールを構築するための広く使われているパッケージです。これらはユーザーが入力したコマンドやオプションを解析し、プログラム内で扱いやすい形に変換する機能を提供します。commander は Git や npm のようなサブコマンド中心の CLI に適しており、API がコンパクトで直感的です。一方、yargs は柔軟なオプション定義やヘルプメッセージの自動生成、国際化対応など、より多くのビルトイン機能を備えており、複雑な CLI ユースケースにも対応できます。
Node.js で CLI ツールを作る際、ユーザー入力の解析とコマンド構造の管理は避けて通れません。commander と yargs はどちらもこの課題を解決する代表的なパッケージですが、設計思想と実装スタイルには明確な違いがあります。現場のエンジニア視点で、実際のコードを交えながら深掘りします。
commander は .option() と .action() でコマンドを定義します。構文が簡潔で、Git 風のサブコマンドを自然に表現できます。
// commander
import { Command } from 'commander';
const program = new Command();
program
.name('my-cli')
.description('A sample CLI tool')
.version('1.0.0')
.option('-f, --file <path>', 'input file path')
.option('-v, --verbose', 'enable verbose output')
.action((options) => {
console.log('File:', options.file);
console.log('Verbose:', options.verbose);
});
program.parse();
yargs は .option() と .argv で動作します。オプションのメタデータ(説明、型、デフォルト値など)を一括で定義でき、ヘルプ生成が自動で高品質です。
// yargs
import yargs from 'yarg';
yargs
.scriptName('my-cli')
.usage('Usage: $0 [options]')
.option('file', {
alias: 'f',
type: 'string',
describe: 'input file path',
demandOption: false
})
.option('verbose', {
alias: 'v',
type: 'boolean',
describe: 'enable verbose output',
default: false
})
.parse();
💡 注意:
yargsは内部でprocess.argvを直接処理するため、.parse()を呼び出さないと何も実行されません。一方、commanderは.parse()が必須です。
commander は .command() でサブコマンドを階層的に定義できます。各サブコマンドは独立したアクションを持ち、引数やオプションを個別に管理します。
// commander: サブコマンド
program
.command('build <entry>')
.description('Build the project')
.option('-o, --output <dir>', 'output directory')
.action((entry, options) => {
console.log(`Building ${entry} to ${options.output}`);
});
program
.command('serve')
.description('Start dev server')
.option('-p, --port <number>', 'port number', '3000')
.action((options) => {
console.log(`Serving on port ${options.port}`);
});
yargs は .command() で同様の機能を提供しますが、モジュール分割が容易で、外部ファイルからコマンド定義を読み込むことも可能です。
// yargs: サブコマンド
yargs
.command('build <entry>', 'Build the project', (yargs) => {
return yargs
.positional('entry', { type: 'string' })
.option('output', {
alias: 'o',
type: 'string',
describe: 'output directory'
});
}, (argv) => {
console.log(`Building ${argv.entry} to ${argv.output}`);
})
.command('serve', 'Start dev server', (yargs) => {
return yargs.option('port', {
alias: 'p',
type: 'number',
default: 3000,
describe: 'port number'
});
}, (argv) => {
console.log(`Serving on port ${argv.port}`);
})
.parse();
yargs の利点は、コマンドロジックを完全に分離できることです。大規模な CLI では、各コマンドを別ファイルに切り出して保守性を高められます。
commander はオプションの型チェックを手動で行う必要があります。ただし、TypeScript を使う場合、.parse() の戻り値を型安全に扱うことは可能です。
// commander + TypeScript
interface Options {
file?: string;
verbose: boolean;
}
const options = program.opts<Options>();
// options.file は string | undefined
// options.verbose は boolean
yargs はオプション定義時に type を指定することで、実行時に自動的に型変換とバリデーションを行います。さらに、strict() を有効にすると、未定義のフラグが渡されたときにエラーを投げます。
// yargs: strict mode と型変換
yargs
.strict() // 未知のオプションでエラー
.option('count', {
type: 'number',
default: 1
})
.parse();
// --count=5 → argv.count は number 型
// --count=abc → エラーメッセージ付きで終了
この自動バリデーションは、ユーザー体験を向上させるだけでなく、開発中のバグを早期に検出する助けになります。
commander のヘルプはシンプルで、.addHelpText() で前後に任意のテキストを挿入できます。
// commander: ヘルプ拡張
program.addHelpText('beforeAll', 'My CLI Tool - v1.0\n');
program.addHelpText('after', '\nExamples:\n $ my-cli build src/index.js');
yargs は .epilogue() や .example() など、細かい制御用のメソッドを多数提供しています。また、.help() の出力を完全に置き換えることも可能です。
// yargs: 詳細なヘルプ
yargs
.epilogue('For more info, visit https://example.com')
.example('$0 build src/app.js', 'Build the application')
.example('$0 serve --port 8080', 'Start server on port 8080');
特にオープンソースツールやチーム内共有ツールでは、丁寧なヘルプが採用率を左右します。yargs はこの点で優位性があります。
commander は国際化を直接サポートしていません。ヘルプメッセージやエラー文言を多言語対応するには、自前でラッパーを書く必要があります。
yargs は .locale() と .updateStrings() でローカライズをサポートしています。コミュニティ提供の翻訳ファイルを使えば、すぐに多言語対応が可能です。
// yargs: 日本語対応
import ja from 'yargs/i18n/ja.json';
yargs.updateStrings(ja).locale('ja');
// これで「Unknown argument」などが日本語に
グローバルユーザーを想定する CLI では、この機能が大きな差になります。
commander は設定ファイルの読み込みをサポートしていません。必要なら、自前で fs や cosmiconfig を使って実装する必要があります。
yargs は .config() で設定ファイル(JSON, YAML, JS など)からのオプション上書きを簡単に実現できます。
// yargs: 設定ファイル対応
yargs
.option('output', { type: 'string' })
.config('config', 'Path to config file', (configPath) => {
return require(configPath);
})
.parse();
// .myclirc に { "output": "dist" } があれば、--output が不要に
この機能は、CI/CD 環境やプロジェクトルートに設定を置きたい場合に非常に便利です。
commander と yargs は以下の点で共通しています:
@types/ または組み込み)を提供しています。// commander
const options = program.opts<{ file?: string; verbose: boolean }>();
// yargs
const argv = yargs
.option('file', { type: 'string' })
.option('verbose', { type: 'boolean', default: false })
.parseSync();
// argv は型推論される
// commander
program.requiredOption('-c, --config <file>', 'config file is required');
// yargs
yargs.demandOption('config', 'Config file is required');
| 要件 | commander | yargs |
|---|---|---|
| シンプルな CLI | ✅ 最小限のコードで実現 | ⚠️ 機能過多になりがち |
| 複雑なサブコマンド | ✅ 直感的でクリーン | ✅ モジュール分割が可能 |
| 詳細なヘルプ | ⚠️ 手動で拡張必要 | ✅ ビルトインで高機能 |
| 設定ファイル対応 | ❌ 自前実装必須 | ✅ .config() で簡単 |
| 国際化 | ❌ 非対応 | ✅ 公式サポート |
| 厳格なバリデーション | ⚠️ 手動 | ✅ 自動で型変換・エラー |
commander が速くて軽い。余計な機能がなく、コードがすっきりします。yargs の柔軟性と機能セットが長期的なメンテナンスを楽にします。どちらも成熟したパッケージなので、一度使い始めたら途中で乗り換える必要はほとんどありません。最初の設計段階で「ユーザーにどんな体験を提供したいか」を考えるのが、最良の選択につながります。
commander はシンプルで軽量な CLI を素早く作りたい場合に最適です。特に Git や Docker のようなサブコマンドベースのインターフェースが必要なツールに向いています。API が最小限で学習コストが低く、TypeScript との統合もスムーズです。大規模なヘルプ生成や高度なバリデーションを必要としないプロジェクトでは、余計な機能を持たないこのパッケージが開発効率を高めます。
yargs は複雑なオプション構成や詳細なヘルプメッセージ、エラーハンドリングを必要とする CLI ツールに適しています。自動補完のサポート、国際化(i18n)、設定ファイルとの連携など、プロダクションレベルの CLI に求められる機能が豊富に揃っています。ただし、その分 API がやや複雑になるため、シンプルなユースケースではオーバーエンジニアリングになる可能性があります。
The complete solution for node.js command-line interfaces.
Read this in other languages: English | 简体中文
For information about terms used in this document see: terminology
npm install commander
You write code to describe your command line interface. Commander looks after parsing the arguments into options and command-arguments, displays usage errors for problems, and implements a help system.
Commander is strict and displays an error for unrecognised options. The two most used option types are a boolean option, and an option which takes its value from the following argument.
Example file: split.js
const { program } = require('commander');
program
.option('--first')
.option('-s, --separator <char>')
.argument('<string>');
program.parse();
const options = program.opts();
const limit = options.first ? 1 : undefined;
console.log(program.args[0].split(options.separator, limit));
$ node split.js -s / --fits a/b/c
error: unknown option '--fits'
(Did you mean --first?)
$ node split.js -s / --first a/b/c
[ 'a' ]
Here is a more complete program using a subcommand and with descriptions for the help. In a multi-command program, you have an action handler for each command (or stand-alone executables for the commands).
Example file: string-util.js
const { Command } = require('commander');
const program = new Command();
program
.name('string-util')
.description('CLI to some JavaScript string utilities')
.version('0.8.0');
program.command('split')
.description('Split a string into substrings and display as an array')
.argument('<string>', 'string to split')
.option('--first', 'display just the first substring')
.option('-s, --separator <char>', 'separator character', ',')
.action((str, options) => {
const limit = options.first ? 1 : undefined;
console.log(str.split(options.separator, limit));
});
program.parse();
$ node string-util.js help split
Usage: string-util split [options] <string>
Split a string into substrings and display as an array.
Arguments:
string string to split
Options:
--first display just the first substring
-s, --separator <char> separator character (default: ",")
-h, --help display help for command
$ node string-util.js split --separator=/ a/b/c
[ 'a', 'b', 'c' ]
More samples can be found in the examples directory.
Commander exports a global object which is convenient for quick programs. This is used in the examples in this README for brevity.
// CommonJS (.cjs)
const { program } = require('commander');
For larger programs which may use commander in multiple ways, including unit testing, it is better to create a local Command object to use.
// CommonJS (.cjs)
const { Command } = require('commander');
const program = new Command();
// ECMAScript (.mjs)
import { Command } from 'commander';
const program = new Command();
// TypeScript (.ts)
import { Command } from 'commander';
const program = new Command();
Options are defined with the .option() method, also serving as documentation for the options. Each option can have a short flag (single character) and a long name, separated by a comma, a space, or a vertical bar (|). To allow a wider range of short-ish flags than just single characters, you may also have two long options.
program
.option('-p, --port <number>', 'server port number')
.option('--trace', 'add extra debugging output')
.option('--ws, --workspace <name>', 'use a custom workspace')
The parsed options can be accessed by calling .opts() on a Command object, and are passed to the action handler.
Multi-word options like --template-engine are normalized to camelCase option names, resulting in properties such as program.opts().templateEngine.
An option and its option-argument can be separated by a space, or combined into the same argument. The option-argument can follow the short option directly, or follow an = for a long option.
serve -p 80
serve -p80
serve --port 80
serve --port=80
You can use -- to indicate the end of the options, and any remaining arguments will be used without being interpreted.
By default, options on the command line are not positional, and can be specified before or after other arguments.
There are additional related routines for when .opts() is not enough:
.optsWithGlobals() returns merged local and global option values.getOptionValue() and .setOptionValue() work with a single option value.getOptionValueSource() and .setOptionValueWithSource() include where the option value came fromThe two most used option types are a boolean option, and an option which takes its value
from the following argument (declared with angle brackets like --expect <value>). Both are undefined unless specified on command line.
Example file: options-common.js
program
.option('-d, --debug', 'output extra debugging')
.option('-s, --small', 'small pizza size')
.option('-p, --pizza-type <type>', 'flavour of pizza');
program.parse(process.argv);
const options = program.opts();
if (options.debug) console.log(options);
console.log('pizza details:');
if (options.small) console.log('- small pizza size');
if (options.pizzaType) console.log(`- ${options.pizzaType}`);
$ pizza-options -p
error: option '-p, --pizza-type <type>' argument missing
$ pizza-options -d -s -p vegetarian
{ debug: true, small: true, pizzaType: 'vegetarian' }
pizza details:
- small pizza size
- vegetarian
$ pizza-options --pizza-type=cheese
pizza details:
- cheese
Multiple boolean short options may be combined following the dash, and may be followed by a single short option taking a value.
For example, -d -s -p cheese may be written as -ds -p cheese or even -dsp cheese.
Options with an expected option-argument are greedy and will consume the following argument whatever the value.
So --id -xyz reads -xyz as the option-argument.
program.parse(arguments) processes the arguments, leaving any args not consumed by the program options in the program.args array. The parameter is optional and defaults to process.argv.
You can specify a default value for an option.
Example file: options-defaults.js
program
.option('-c, --cheese <type>', 'add the specified type of cheese', 'blue');
program.parse();
console.log(`cheese: ${program.opts().cheese}`);
$ pizza-options
cheese: blue
$ pizza-options --cheese stilton
cheese: stilton
You can define a boolean option long name with a leading no- to set the option value to false when used.
Defined alone, this also makes the option true by default.
If you define --foo first, adding --no-foo does not change the default value from what it would
otherwise be.
Example file: options-negatable.js
program
.option('--no-sauce', 'Remove sauce')
.option('--cheese <flavour>', 'cheese flavour', 'mozzarella')
.option('--no-cheese', 'plain with no cheese')
.parse();
const options = program.opts();
const sauceStr = options.sauce ? 'sauce' : 'no sauce';
const cheeseStr = (options.cheese === false) ? 'no cheese' : `${options.cheese} cheese`;
console.log(`You ordered a pizza with ${sauceStr} and ${cheeseStr}`);
$ pizza-options
You ordered a pizza with sauce and mozzarella cheese
$ pizza-options --sauce
error: unknown option '--sauce'
$ pizza-options --cheese=blue
You ordered a pizza with sauce and blue cheese
$ pizza-options --no-sauce --no-cheese
You ordered a pizza with no sauce and no cheese
You can specify an option which may be used as a boolean option but may optionally take an option-argument
(declared with square brackets, like --optional [value]).
Example file: options-boolean-or-value.js
program
.option('-c, --cheese [type]', 'Add cheese with optional type');
program.parse(process.argv);
const options = program.opts();
if (options.cheese === undefined) console.log('no cheese');
else if (options.cheese === true) console.log('add cheese');
else console.log(`add cheese type ${options.cheese}`);
$ pizza-options
no cheese
$ pizza-options --cheese
add cheese
$ pizza-options --cheese mozzarella
add cheese type mozzarella
Options with an optional option-argument are not greedy and will ignore arguments starting with a dash.
So id behaves as a boolean option for --id -ABCD, but you can use a combined form if needed like --id=-ABCD.
Negative numbers are special and are accepted as an option-argument.
For information about possible ambiguous cases, see options taking varying arguments.
You may specify a required (mandatory) option using .requiredOption(). The option must have a value after parsing, usually specified on the command line, or perhaps from a default value (e.g., from environment).
The method is otherwise the same as .option() in format, taking flags and description, and optional default value or custom processing.
Example file: options-required.js
program
.requiredOption('-c, --cheese <type>', 'pizza must have cheese');
program.parse();
$ pizza
error: required option '-c, --cheese <type>' not specified
You may make an option variadic by appending ... to the value placeholder when declaring the option. On the command line you
can then specify multiple option-arguments, and the parsed option value will be an array. The extra arguments
are read until the first argument starting with a dash. The special argument -- stops option processing entirely. If a value
is specified in the same argument as the option, then no further values are read.
Example file: options-variadic.js
program
.option('-n, --number <numbers...>', 'specify numbers')
.option('-l, --letter [letters...]', 'specify letters');
program.parse();
console.log('Options: ', program.opts());
console.log('Remaining arguments: ', program.args);
$ collect -n 1 2 3 --letter a b c
Options: { number: [ '1', '2', '3' ], letter: [ 'a', 'b', 'c' ] }
Remaining arguments: []
$ collect --letter=A -n80 operand
Options: { number: [ '80' ], letter: [ 'A' ] }
Remaining arguments: [ 'operand' ]
$ collect --letter -n 1 -n 2 3 -- operand
Options: { number: [ '1', '2', '3' ], letter: true }
Remaining arguments: [ 'operand' ]
For information about possible ambiguous cases, see options taking varying arguments.
The optional .version() method adds handling for displaying the command version. The default option flags are -V and --version. When used, the command prints the version number and exits.
program.version('0.0.1');
$ ./examples/pizza -V
0.0.1
You may change the flags and description by passing additional parameters to the .version() method, using
the same syntax for flags as the .option() method.
program.version('0.0.1', '-v, --vers', 'output the current version');
You can add most options using the .option() method, but there are some additional features available
by constructing an Option explicitly for less common cases.
Example files: options-extra.js, options-env.js, options-conflicts.js, options-implies.js
program
.addOption(new Option('-s, --secret').hideHelp())
.addOption(new Option('-t, --timeout <delay>', 'timeout in seconds').default(60, 'one minute'))
.addOption(new Option('-d, --drink <size>', 'drink size').choices(['small', 'medium', 'large']))
.addOption(new Option('-p, --port <number>', 'port number').env('PORT'))
.addOption(new Option('--donate [amount]', 'optional donation in dollars').preset('20').argParser(parseFloat))
.addOption(new Option('--disable-server', 'disables the server').conflicts('port'))
.addOption(new Option('--free-drink', 'small drink included free ').implies({ drink: 'small' }));
$ extra --help
Usage: help [options]
Options:
-t, --timeout <delay> timeout in seconds (default: one minute)
-d, --drink <size> drink cup size (choices: "small", "medium", "large")
-p, --port <number> port number (env: PORT)
--donate [amount] optional donation in dollars (preset: "20")
--disable-server disables the server
--free-drink small drink included free
-h, --help display help for command
$ extra --drink huge
error: option '-d, --drink <size>' argument 'huge' is invalid. Allowed choices are small, medium, large.
$ PORT=80 extra --donate --free-drink
Options: { timeout: 60, donate: 20, port: '80', freeDrink: true, drink: 'small' }
$ extra --disable-server --port 8000
error: option '--disable-server' cannot be used with option '-p, --port <number>'
Specify a required (mandatory) option using the Option method .makeOptionMandatory(). This matches the Command method .requiredOption().
You may specify a function to do custom processing of option-arguments. The callback function receives two parameters, the user specified option-argument and the previous value for the option. It returns the new value for the option.
This allows you to coerce the option-argument to the desired type, or accumulate values, or do entirely custom processing.
You can optionally specify the default/starting value for the option after the function parameter.
Example file: options-custom-processing.js
function myParseInt(value, dummyPrevious) {
// parseInt takes a string and a radix
const parsedValue = parseInt(value, 10);
if (isNaN(parsedValue)) {
throw new commander.InvalidArgumentError('Not a number.');
}
return parsedValue;
}
function increaseVerbosity(dummyValue, previous) {
return previous + 1;
}
function collect(value, previous) {
return previous.concat([value]);
}
function commaSeparatedList(value, dummyPrevious) {
return value.split(',');
}
program
.option('-f, --float <number>', 'float argument', parseFloat)
.option('-i, --integer <number>', 'integer argument', myParseInt)
.option('-v, --verbose', 'verbosity that can be increased', increaseVerbosity, 0)
.option('-c, --collect <value>', 'repeatable value', collect, [])
.option('-l, --list <items>', 'comma separated list', commaSeparatedList)
;
program.parse();
const options = program.opts();
if (options.float !== undefined) console.log(`float: ${options.float}`);
if (options.integer !== undefined) console.log(`integer: ${options.integer}`);
if (options.verbose > 0) console.log(`verbosity: ${options.verbose}`);
if (options.collect.length > 0) console.log(options.collect);
if (options.list !== undefined) console.log(options.list);
$ custom -f 1e2
float: 100
$ custom --integer 2
integer: 2
$ custom -v -v -v
verbose: 3
$ custom -c a -c b -c c
[ 'a', 'b', 'c' ]
$ custom --list x,y,z
[ 'x', 'y', 'z' ]
You can specify (sub)commands using .command() or .addCommand(). There are two ways these can be implemented: using an .action() handler attached to the command; or as a stand-alone executable file. (More detail about this later.)
Subcommands may be nested. Example file: nestedCommands.js.
In the first parameter to .command() you specify the command name. You may append the command-arguments after the command name, or specify them separately using .argument(). The arguments may be <required> or [optional], and the last argument may also be variadic....
You can use .addCommand() to add an already configured subcommand to the program.
For example:
// Command implemented using action handler (description is supplied separately to `.command`)
// Returns new command for configuring.
program
.command('clone <source> [destination]')
.description('clone a repository into a newly created directory')
.action((source, destination) => {
console.log('clone command called');
});
// Command implemented using stand-alone executable file, indicated by adding description as second parameter to `.command`.
// Returns `this` for adding more commands.
program
.command('start <service>', 'start named service')
.command('stop [service]', 'stop named service, or all if no name supplied');
// Command prepared separately.
// Returns `this` for adding more commands.
program
.addCommand(build.makeBuildCommand());
Configuration options can be passed with the call to .command() and .addCommand(). Specifying hidden: true will
remove the command from the generated help output. Specifying isDefault: true will run the subcommand if no other
subcommand is specified. (Example file: defaultCommand.js.)
You can add alternative names for a command with .alias(). (Example file: alias.js.)
.command() automatically copies the inherited settings from the parent command to the newly created subcommand. This is only done during creation; any later setting changes to the parent are not inherited.
For safety, .addCommand() does not automatically copy the inherited settings from the parent command. There is a helper routine .copyInheritedSettings() for copying the settings when they are wanted.
For subcommands, you can specify the argument syntax in the call to .command() (as shown above). This
is the only method usable for subcommands implemented using a stand-alone executable.
Alternatively, you can instead use the following method. To configure a command, you can use .argument() to specify each expected command-argument.
You supply the argument name and an optional description. The argument may be <required> or [optional].
You can specify a default value for an optional command-argument.
Example file: argument.js
program
.version('0.1.0')
.argument('<username>', 'user to login')
.argument('[password]', 'password for user, if required', 'no password given')
.action((username, password) => {
console.log('username:', username);
console.log('password:', password);
});
The last argument of a command can be variadic, and only the last argument. To make an argument variadic, simply
append ... to the argument name.
A variadic argument is passed to the action handler as an array.
program
.version('0.1.0')
.command('rmdir')
.argument('<dirs...>')
.action(function (dirs) {
dirs.forEach((dir) => {
console.log('rmdir %s', dir);
});
});
There is a convenience method to add multiple arguments at once, but without descriptions:
program
.arguments('<username> <password>');
There are some additional features available by constructing an Argument explicitly for less common cases.
Example file: arguments-extra.js
program
.addArgument(new commander.Argument('<drink-size>', 'drink cup size').choices(['small', 'medium', 'large']))
.addArgument(new commander.Argument('[timeout]', 'timeout in seconds').default(60, 'one minute'))
You may specify a function to do custom processing of command-arguments (like for option-arguments). The callback function receives two parameters, the user specified command-argument and the previous value for the argument. It returns the new value for the argument.
The processed argument values are passed to the action handler, and saved as .processedArgs.
You can optionally specify the default/starting value for the argument after the function parameter.
Example file: arguments-custom-processing.js
program
.command('add')
.argument('<first>', 'integer argument', myParseInt)
.argument('[second]', 'integer argument', myParseInt, 1000)
.action((first, second) => {
console.log(`${first} + ${second} = ${first + second}`);
})
;
The action handler gets passed a parameter for each command-argument you declared, and two additional parameters which are the parsed options and the command object itself.
Example file: thank.js
program
.argument('<name>')
.option('-t, --title <honorific>', 'title to use before name')
.option('-d, --debug', 'display some debugging')
.action((name, options, command) => {
if (options.debug) {
console.error('Called %s with options %o', command.name(), options);
}
const title = options.title ? `${options.title} ` : '';
console.log(`Thank-you ${title}${name}`);
});
If you prefer, you can work with the command directly and skip declaring the parameters for the action handler. If you use a function expression (but not an arrow function), the this keyword is set to the running command.
Example file: action-this.js
program
.command('serve')
.argument('<script>')
.option('-p, --port <number>', 'port number', 80)
.action(function() {
console.error('Run script %s on port %s', this.args[0], this.opts().port);
});
You may supply an async action handler, in which case you call .parseAsync() rather than .parse().
async function run() { /* code goes here */ }
async function main() {
program
.command('run')
.action(run);
await program.parseAsync(process.argv);
}
A command's options and arguments on the command line are validated when the command is used. Any unknown options, missing arguments, or excess arguments will be reported as an error.
You can suppress the unknown option check with .allowUnknownOption(). You can suppress the excess arguments check with .allowExcessArguments().
When .command() is invoked with a description argument, this tells Commander that you're going to use stand-alone executables for subcommands.
Commander will search the files in the directory of the entry script for a file with the name combination command-subcommand (like pm-install or pm-search in the example below). The search includes trying common file extensions, like .js.
You may specify a custom name (and path) with the executableFile configuration option.
You may specify a custom search directory for subcommands with .executableDir().
You handle the options for an executable (sub)command in the executable, and don't declare them at the top-level.
Example file: pm
program
.name('pm')
.version('0.1.0')
.command('install [package-names...]', 'install one or more packages')
.command('search [query]', 'search with optional query')
.command('update', 'update installed packages', { executableFile: 'myUpdateSubCommand' })
.command('list', 'list packages installed', { isDefault: true });
program.parse(process.argv);
If the program is designed to be installed globally, make sure the executables have proper modes, like 755.
You can add callback hooks to a command for life cycle events.
Example file: hook.js
program
.option('-t, --trace', 'display trace statements for commands')
.hook('preAction', (thisCommand, actionCommand) => {
if (thisCommand.opts().trace) {
console.log(`About to call action handler for subcommand: ${actionCommand.name()}`);
console.log('arguments: %O', actionCommand.args);
console.log('options: %o', actionCommand.opts());
}
});
The callback hook can be async, in which case you call .parseAsync() rather than .parse(). You can add multiple hooks per event.
The supported events are:
| event name | when hook called | callback parameters |
|---|---|---|
preAction, postAction | before/after action handler for this command and its nested subcommands | (thisCommand, actionCommand) |
preSubcommand | before parsing direct subcommand | (thisCommand, subcommand) |
For an overview of the life cycle events, see parsing life cycle and hooks.
The help information is auto-generated based on the information commander already knows about your program. The default
help option is -h,--help.
Example file: pizza
$ node ./examples/pizza --help
Usage: pizza [options]
An application for pizza ordering
Options:
-p, --peppers Add peppers
-c, --cheese <type> Add the specified type of cheese (default: "marble")
-C, --no-cheese You do not want any cheese
-h, --help display help for command
A help command is added by default if your command has subcommands. It can be used alone, or with a subcommand name to show
further help for the subcommand. These are effectively the same if the shell program has implicit help:
shell help
shell --help
shell help spawn
shell spawn --help
Long descriptions are wrapped to fit the available width. (However, a description that includes a line-break followed by whitespace is assumed to be pre-formatted and not wrapped.)
You can add extra text to be displayed along with the built-in help.
Example file: custom-help
program
.option('-f, --foo', 'enable some foo');
program.addHelpText('after', `
Example call:
$ custom-help --help`);
Yields the following help output:
Usage: custom-help [options]
Options:
-f, --foo enable some foo
-h, --help display help for command
Example call:
$ custom-help --help
The positions in order displayed are:
beforeAll: add to the program for a global banner or headerbefore: display extra information before built-in helpafter: display extra information after built-in helpafterAll: add to the program for a global footer (epilog)The positions "beforeAll" and "afterAll" apply to the command and all its subcommands.
The second parameter can be a string, or a function returning a string. The function is passed a context object for your convenience. The properties are:
error: a boolean for whether the help is being displayed due to a usage errorcommand: the Command which is displaying the helpThe default behaviour for usage errors is to just display a short error message. You can change the behaviour to show the full help or a custom help message after an error.
program.showHelpAfterError();
// or
program.showHelpAfterError('(add --help for additional information)');
$ pizza --unknown
error: unknown option '--unknown'
(add --help for additional information)
The default behaviour is to suggest correct spelling after an error for an unknown command or option. You can disable this.
program.showSuggestionAfterError(false);
$ pizza --hepl
error: unknown option '--hepl'
(Did you mean --help?)
.help(): display help information and exit immediately. You can optionally pass { error: true } to display on stderr and exit with an error status.
.outputHelp(): output help information without exiting. You can optionally pass { error: true } to display on stderr.
.helpInformation(): get the built-in command help information as a string for processing or displaying yourself.
The command name appears in the help, and is also used for locating stand-alone executable subcommands.
You may specify the program name using .name() or in the Command constructor. For the program, Commander will
fall back to using the script name from the full arguments passed into .parse(). However, the script name varies
depending on how your program is launched, so you may wish to specify it explicitly.
program.name('pizza');
const pm = new Command('pm');
Subcommands get a name when specified using .command(). If you create the subcommand yourself to use with .addCommand(),
then set the name using .name() or in the Command constructor.
This allows you to customise the usage description in the first line of the help. Given:
program
.name("my-command")
.usage("[global options] command")
The help will start with:
Usage: my-command [global options] command
The description appears in the help for the command. You can optionally supply a shorter summary to use when listed as a subcommand of the program.
program
.command("duplicate")
.summary("make a copy")
.description(`Make a copy of the current project.
This may require additional disk space.
`);
By default, every command has a help option. You may change the default help flags and description. Pass false to disable the built-in help option.
program
.helpOption('-e, --HELP', 'read more information');
Alternatively, use .addHelpOption() to add an option you construct yourself.
A help command is added by default if your command has subcommands. You can explicitly turn the implicit help command on or off with .helpCommand(true) and .helpCommand(false).
You can both turn on and customise the help command by supplying the name and description:
program.helpCommand('assist [command]', 'show assistance');
Alternatively, use .addHelpCommand() to add a command you construct yourself.
The help by default lists options under the the heading Options: and commands under Commands:. You can create your own groups
with different headings.
.optionsGroup() and .commandsGroup()..helpGroup() on an individual Option or Command.Example file: help-groups.js
The built-in help is formatted using the Help class.
You can configure the help by modifying data properties and methods using .configureHelp(), or by subclassing Help using .createHelp() .
Simple properties include sortSubcommands, sortOptions, and showGlobalOptions. You can add color using the style methods like .styleTitle().
For more detail and examples of changing the displayed text, color, and layout, see: Help in Depth.
You can execute custom actions by listening to command and option events.
program.on('option:verbose', function () {
process.env.VERBOSE = this.opts().verbose;
});
Call with no parameters to parse process.argv. Detects Electron and special node options like node --eval. Easy mode!
Or, call with an array of strings to parse, and optionally where the user arguments start by specifying where the arguments are from:
'node': default, argv[0] is the application and argv[1] is the script being run, with user arguments after that'electron': argv[0] is the application and argv[1] varies depending on whether the electron application is packaged'user': just user argumentsFor example:
program.parse(); // parse process.argv and auto-detect electron and special node flags
program.parse(process.argv); // assume argv[0] is app and argv[1] is script
program.parse(['--port', '80'], { from: 'user' }); // just user supplied arguments, nothing special about argv[0]
Use .parseAsync() instead of .parse() if any of your action handlers are async.
If the default parsing does not suit your needs, there are some behaviours to support other usage patterns.
By default, program options are recognised before and after subcommands. To only look for program options before subcommands, use .enablePositionalOptions(). This lets you use
an option for a different purpose in subcommands.
Example file: positional-options.js
With positional options, the -b is a program option in the first line and a subcommand option in the second line:
program -b subcommand
program subcommand -b
By default, options are recognised before and after command-arguments. To only process options that come
before the command-arguments, use .passThroughOptions(). This lets you pass the arguments and following options through to another program
without needing to use -- to end the option processing.
To use pass through options in a subcommand, the program needs to enable positional options.
Example file: pass-through-options.js
With pass through options, the --port=80 is a program option in the first line and passed through as a command-argument in the second line:
program --port=80 arg
program arg --port=80
By default, the option processing shows an error for an unknown option. To have an unknown option treated as an ordinary command-argument and continue looking for options, use .allowUnknownOption(). This lets you mix known and unknown options.
By default, the argument processing displays an error for more command-arguments than expected.
To suppress the error for excess arguments, use .allowExcessArguments().
Before Commander 7, the option values were stored as properties on the command.
This was convenient to code, but the downside was possible clashes with
existing properties of Command.
You can revert to the old behaviour to run unmodified legacy code by using .storeOptionsAsProperties().
program
.storeOptionsAsProperties()
.option('-d, --debug')
.action((commandAndOptions) => {
if (commandAndOptions.debug) {
console.error(`Called ${commandAndOptions.name()}`);
}
});
extra-typings: There is an optional project to infer extra type information from the option and argument definitions.
This adds strong typing to the options returned by .opts() and the parameters to .action().
For more, see the repo: commander-js/extra-typings.
import { Command } from '@commander-js/extra-typings';
ts-node: If you use ts-node and stand-alone executable subcommands written as .ts files, you need to call your program through node to get the subcommands called correctly, e.g.:
node -r ts-node/register pm.ts
This factory function creates a new command. It is exported and may be used instead of using new, like:
const { createCommand } = require('commander');
const program = createCommand();
createCommand() is also a method of the Command object, and creates a new command rather than a subcommand. This gets used internally
when creating subcommands using .command(), and you may override it to
customise the new subcommand. Example file: custom-command-class.js.
--harmonyYou can enable --harmony option in two ways:
#! /usr/bin/env node --harmony in the subcommands scripts. (Note: Windows does not support this pattern.)--harmony option when calling the command, like node --harmony examples/pm publish. The --harmony option will be preserved when spawning subcommand processes.An executable subcommand is launched as a separate child process.
If you are using the node inspector for debugging executable subcommands using node --inspect et al.,
the inspector port is incremented by 1 for the spawned subcommand.
If you are using VSCode to debug executable subcommands you need to set the "autoAttachChildProcesses": true flag in your launch.json configuration.
By default, when you call your program using run-script, npm will parse any options on the command-line and they will not reach your program. Use
-- to stop the npm option parsing and pass through all the arguments.
The synopsis for npm run-script explicitly shows the -- for this reason:
npm run-script <command> [-- <args>]
This routine is available to invoke the Commander error handling for your own error conditions. (See also the next section about exit handling.)
As well as the error message, you can optionally specify the exitCode (used with process.exit())
and code (used with CommanderError).
program.error('Password must be longer than four characters');
program.error('Custom processing has failed', { exitCode: 2, code: 'my.custom.error' });
By default, Commander calls process.exit() when it detects errors, or after displaying the help or version. You can override
this behaviour and optionally supply a callback. The default override throws a CommanderError.
The override callback is passed a CommanderError with the properties:
exitCode: numbercode: stringmessage: stringCommander expects the callback to terminate the normal program flow, and will call process.exit() if the callback returns.
The normal display of error messages or version or help is not affected by the override, which is called after the display.
program.exitOverride();
try {
program.parse(process.argv);
} catch (err) {
// custom processing...
}
By default, Commander is configured for a command-line application and writes to stdout and stderr. You can modify this behaviour for custom applications. In addition, you can modify the display of error messages.
Example file: configure-output.js
function errorColor(str) {
// Add ANSI escape codes to display text in red.
return `\x1b[31m${str}\x1b[0m`;
}
program
.configureOutput({
// Visibly override write routines as example!
writeOut: (str) => process.stdout.write(`[OUT] ${str}`),
writeErr: (str) => process.stdout.write(`[ERR] ${str}`),
// Highlight errors in color.
outputError: (str, write) => write(errorColor(str))
});
There is more information available about:
The current version of Commander is fully supported on Long Term Support versions of Node.js, and requires at least v20.
Older major versions of Commander receive security updates for 12 months. For more see: Release Policy.
The main forum for free and community support is the project Issues on GitHub.
Available as part of the Tidelift Subscription
The maintainers of Commander and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. Learn more.