Commander.js

Developer Tools

The command-line interface framework for Node.js.

Latest 15.0.0 · by TJ HolowaychukWebsitenpm · commander

Release activity

Release activity — 5 releases across 5 days in the last year. Each cell is one day; darker means more releases that day. Older weeks are hidden at this screen width.
MayJunJulAug
SundayNo releases on May 3, 2026No releases on May 10, 2026No releases on May 17, 2026No releases on May 24, 2026No releases on May 31, 2026No releases on Jun 7, 2026No releases on Jun 14, 2026No releases on Jun 21, 2026No releases on Jun 28, 2026No releases on Jul 5, 2026No releases on Jul 12, 2026No releases on Jul 19, 2026No releases on Jul 26, 2026No releases on Aug 2, 2026No releases on Aug 9, 2026No releases on Aug 16, 2026
MondayNo releases on May 4, 2026No releases on May 11, 2026No releases on May 18, 2026No releases on May 25, 2026No releases on Jun 1, 2026No releases on Jun 8, 2026No releases on Jun 15, 2026No releases on Jun 22, 2026No releases on Jun 29, 2026No releases on Jul 6, 2026No releases on Jul 13, 2026No releases on Jul 20, 2026No releases on Jul 27, 2026No releases on Aug 3, 2026No releases on Aug 10, 2026No releases on Aug 17, 2026
TuesdayNo releases on May 5, 2026No releases on May 12, 2026No releases on May 19, 2026No releases on May 26, 2026No releases on Jun 2, 2026No releases on Jun 9, 2026No releases on Jun 16, 2026No releases on Jun 23, 2026No releases on Jun 30, 2026No releases on Jul 7, 2026No releases on Jul 14, 2026No releases on Jul 21, 2026No releases on Jul 28, 2026No releases on Aug 4, 2026No releases on Aug 11, 2026No releases on Aug 18, 2026
WednesdayNo releases on May 6, 2026No releases on May 13, 2026No releases on May 20, 2026No releases on May 27, 2026No releases on Jun 3, 2026No releases on Jun 10, 2026No releases on Jun 17, 2026No releases on Jun 24, 2026No releases on Jul 1, 2026No releases on Jul 8, 2026No releases on Jul 15, 2026No releases on Jul 22, 2026No releases on Jul 29, 2026No releases on Aug 5, 2026No releases on Aug 12, 2026No releases on Aug 19, 2026
ThursdayNo releases on May 7, 2026No releases on May 14, 2026No releases on May 21, 2026No releases on May 28, 2026No releases on Jun 4, 2026No releases on Jun 11, 2026No releases on Jun 18, 2026No releases on Jun 25, 2026No releases on Jul 2, 2026No releases on Jul 9, 2026No releases on Jul 16, 2026No releases on Jul 23, 2026No releases on Jul 30, 2026No releases on Aug 6, 2026No releases on Aug 13, 2026
FridayNo releases on May 8, 2026No releases on May 15, 2026No releases on May 22, 20261 release on May 29, 2026No releases on Jun 5, 2026No releases on Jun 12, 2026No releases on Jun 19, 2026No releases on Jun 26, 2026No releases on Jul 3, 2026No releases on Jul 10, 2026No releases on Jul 17, 2026No releases on Jul 24, 2026No releases on Jul 31, 2026No releases on Aug 7, 2026No releases on Aug 14, 2026
SaturdayNo releases on May 9, 2026No releases on May 16, 2026No releases on May 23, 2026No releases on May 30, 2026No releases on Jun 6, 2026No releases on Jun 13, 2026No releases on Jun 20, 2026No releases on Jun 27, 2026No releases on Jul 4, 2026No releases on Jul 11, 2026No releases on Jul 18, 2026No releases on Jul 25, 2026No releases on Aug 1, 2026No releases on Aug 8, 2026No releases on Aug 15, 2026

5 releases in the last year

Changelog

15.0.0

Latest
Added 1
  • Show excess command-arguments in error message
Changed 2
  • Migrate Commander implementation from CommonJS to ESM
  • Commander 15 requires Node.js v22.12.0 or higher
Fixed 1
  • Only lone `--no-*` option sets default option value to `true`, default not implicitly set when defining both positive and negative option in either order
Removed 1
  • Remove deprecated export of `commander/esm.mjs`

From Commander.js

Commander 15 is ESM only. This is expected to be seamless for ESM consumers, but some CommonJS consumers may hit issues with tooling requiring configuration for ESM-only dependencies. See Migration Tips below.

The release of Commander 15 moves Commander 14 into maintenance. Commander 14 will get security updates for 12 months (to May 2027). For more info see Release Policy.

Added
  • show excess command-arguments in error message ([#2384])
Fixed
  • Breaking: only lone --no-* option sets default option value to true, default not implicitly set when define both positive and negative option in either order ([#2405])
  • update example to use compatible character for MINGW64 ([#2475])
Changed
  • Breaking: migrated Commander implementation from CommonJS to ESM ([#2464])
  • Breaking: Commander 15 requires Node.js v22.12.0 or higher (for require(esm)).
  • dev: switch tests from Jest to node:test test runner ([#2463])
Deleted
  • Breaking: removed deprecated export of commander/esm.mjs ([#2464])
Migration Tips

Commander 15 is ESM only, but this does not mean you need to migrate to ESM to use it. Importing ESM from CommonJS is supported by Node.js, and Bun, and Deno. Hopefully it Just Works for you! However, you may be using a different runtime or some other part of your setup that may not yet natively support importing ESM from CommonJS, such as your testing framework or bundler.

If you have problems using Commander 15 in your environment, one option is stay on Commander 14 for now. Commander 14 will get security updates until May 2027 and things will hopefully improve for your setup in the meantime.

View originalPermalink
How 15.0.0 went

15.0.0-0

Pre-release

(Released as 15.0.0)

View originalPermalink
How 15.0.0-0 went

14.0.3

Added 1
  • Release Policy document
Changed 2
  • old major versions now supported for 12 months instead of just previous major version, to give predictable end-of-life date
  • clarify typing for deprecated callback parameter to .outputHelp()

From Commander.js

Added
  • Release Policy document ([#2462])
Changes
  • old major versions now supported for 12 months instead of just previous major version, to give predictable end-of-life date ([#2462])
  • clarify typing for deprecated callback parameter to .outputHelp() ([#2427])
  • simple readability improvements to README ([#2465])
View originalPermalink
How 14.0.3 went

14.0.2

Changed 2
  • improve negative number auto-detection test
  • update development dependencies

From Commander.js

Changed
  • improve negative number auto-detection test ([#2428])
  • update (dev) dependencies
View originalPermalink
How 14.0.2 went

14.0.1

Changed 6
  • improve code readability by using optional chaining
  • use more idiomatic code with object spread instead of Object.assign()
  • improve code readability using string.endsWith() instead of string.slice()
  • refactor .parseOptions() to process args array in-place
  • change private variadic support routines from ._concatValue() to ._collectValue() (change code from array.concat() to array.push())
  • update (dev) dependencies
Fixed 1
  • broken markdown link in README

From Commander.js

Fixed
  • broken markdown link in README ([#2369])
Changed
  • improve code readability by using optional chaining ([#2394])
  • use more idiomatic code with object spread instead of Object.assign() ([#2395])
  • improve code readability using string.endsWith() instead of string.slice() ([#2396])
  • refactor .parseOptions() to process args array in-place ([#2409])
  • change private variadic support routines from ._concatValue() to ._collectValue() (change code from array.concat() to array.push()) ([#2410])
  • update (dev) dependencies
View originalPermalink
How 14.0.1 went

14.0.0

Added 3
  • Support for groups of options and commands in the help using low-level .helpGroup() on Option and Command, and higher-level .optionsGroup() and .commandsGroup() which can be used in chaining way to specify group title for following options/commands
  • Support for unescaped negative numbers as option-arguments and command-arguments
  • TypeScript: add parseArg property to Argument class
Changed 2
  • Commander 14 requires Node.js v20 or higher
  • Internal refactor of Help class adding .formatItemList() and .groupItems() methods
Fixed 2
  • Remove bogus leading space in help when option has default value but not a description
  • .configureOutput() now makes copy of settings instead of modifying in-place, fixing side-effects

From Commander.js

Added
  • support for groups of options and commands in the help using low-level .helpGroup() on Option and Command, and higher-level .optionsGroup() and .commandsGroup() which can be used in chaining way to specify group title for following options/commands ([#2328])
  • support for unescaped negative numbers as option-arguments and command-arguments ([#2339])
  • TypeScript: add parseArg property to Argument class ([#2359])
Fixed
  • remove bogus leading space in help when option has default value but not a description ([#2348])
  • .configureOutput() now makes copy of settings instead of modifying in-place, fixing side-effects ([#2350])
Changed
  • Breaking: Commander 14 requires Node.js v20 or higher
  • internal refactor of Help class adding .formatItemList() and .groupItems() methods ([#2328])
View originalPermalink
How 14.0.0 went

13.1.0

Added 1
  • support a pair of long option flags to allow a memorable shortened flag, like `.option('--ws, --workspace')`

From Commander.js

Added
  • support a pair of long option flags to allow a memorable shortened flag, like .option('--ws, --workspace') ([#2312])
View originalPermalink
How 13.1.0 went

13.0.0

Added 6
  • Support multiple calls to .parse() with default settings
  • Add .saveStateBeforeParse() and .restoreStateBeforeParse() for use by subclasses
  • Add style routines like styleTitle() to add color to help using .configureHelp() or Help subclass
  • Add color related support in .configureOutput() for getOutHasColors(), getErrHasColors(), and stripColor()
  • Add Help property for minWidthToWrap
  • Add Help methods for displayWidth(), boxWrap(), preformatted() et al
Changed 4
  • Excess command-arguments cause an error by default
  • Throw during Option construction for unsupported option flags, like multiple characters after single -
  • Throw on multiple calls to .parse() if storeOptionsAsProperties: true
  • Include implicit this in parameters for action handler callback in TypeScript
Removed 1
  • Refactored Help.wrap() into formatItem() and boxWrap()

From Commander.js

Added
  • support multiple calls to .parse() with default settings ([#2299])
  • add .saveStateBeforeParse() and .restoreStateBeforeParse() for use by subclasses ([#2299])
  • style routines like styleTitle() to add color to help using .configureHelp() or Help subclass ([#2251])
  • color related support in .configureOutput() for getOutHasColors(), getErrHasColors(), and stripColor() ([#2251])
  • Help property for minWidthToWrap ([#2251])
  • Help methods for displayWidth(), boxWrap(), preformatted() et al ([#2251])
Changed
  • Breaking: excess command-arguments cause an error by default, see migration tips ([#2223])
  • Breaking: throw during Option construction for unsupported option flags, like multiple characters after single - ([#2270])
    • note: support for dual long option flags added in Commander 13.1
  • Breaking: throw on multiple calls to .parse() if storeOptionsAsProperties: true ([#2299])
  • TypeScript: include implicit this in parameters for action handler callback ([#2197])
Deleted
  • Breaking: Help.wrap() refactored into formatItem() and boxWrap() ([#2251])
Migration Tips

Excess command-arguments

It is now an error for the user to specify more command-arguments than are expected. (allowExcessArguments is now false by default.)

Old code:

program.option('-p, --port <number>', 'port number');
program.action((options) => {
  console.log(program.args);
});

Now shows an error:

$ node example.js a b c
error: too many arguments. Expected 0 arguments but got 3.

You can declare the expected arguments. The help will then be more accurate too. Note that declaring new arguments will change what is passed to the action handler.

program.option('-p, --port <number>', 'port number');
program.argument('[args...]', 'remote command and arguments'); // expecting zero or more arguments
program.action((args, options) => {
  console.log(args);
});

Or you could suppress the error, useful for minimising changes in legacy code.

program.option('-p, --port', 'port number');
program.allowExcessArguments();
program.action((options) => {
  console.log(program.args);
});

Stricter option flag parsing

Commander now throws an error for option flag combinations that are not supported. In particular, a short flag with multiple characters is now an error.

program.option('-ws, --workspace'); // throws error

A short option has a single character:

program.option('-w, --workspace');

Or from Commander 13.1 you can have an extra long flag instead of a short flag to allow a more memorable shortcut for the full name:

program.option('--ws, --workspace');
View originalPermalink
How 13.0.0 went

13.0.0-0

Pre-release

(Released in 13.0.0)

View originalPermalink
How 13.0.0-0 went

12.1.0

Added 1
  • Auto-detect special node flags node --eval and node --print when calling .parse() with no arguments
Changed 4
  • Prefix require of Node.js core modules with node:
  • Format source files with Prettier
  • Switch from StandardJS to directly calling ESLint for linting
  • Extend security support for previous major version of Commander
Removed 1
  • Remove unimplemented Option.fullDescription from TypeScript definition

From Commander.js

Added
  • auto-detect special node flags node --eval and node --print when call .parse() with no arguments ([#2164])
Changed
  • prefix require of Node.js core modules with node: ([#2170])
  • format source files with Prettier ([#2180])
  • switch from StandardJS to directly calling ESLint for linting ([#2153])
  • extend security support for previous major version of Commander ([#2150])
Removed
  • removed unimplemented Option.fullDescription from TypeScript definition ([#2191])
View originalPermalink
How 12.1.0 went

12.0.0

Added 2
  • Add .addHelpOption() as another way of configuring built-in help option
  • Add .helpCommand() for configuring built-in help command
Changed 8
  • Commander 12 requires Node.js v18 or higher
  • Throw an error if adding an option with a flag which is already in use
  • Throw an error if adding a command with name or alias which is already in use
  • Throw error when calling .storeOptionsAsProperties() after setting an option value
  • Replace non-standard JSDoc of @api private with documented @private
  • .addHelpCommand() now takes a Command (passing string or boolean still works as before but deprecated)
  • Refactor internal implementation of built-in help option
  • Refactor internal implementation of built-in help command
Fixed 2
  • Use non-zero exit code when spawned executable subcommand terminates due to a signal
  • Check passThroughOptions constraints when using .addCommand and throw if parent command does not have .enablePositionalOptions() enabled
Removed 1
  • Remove default export of a global Command instance from CommonJS (use the named program export instead)
Deprecated 1
  • .addHelpCommand() passing string or boolean (use .helpCommand() or pass a Command)

From Commander.js

Added
  • .addHelpOption() as another way of configuring built-in help option ([#2006])
  • .helpCommand() for configuring built-in help command ([#2087])
Fixed
  • Breaking: use non-zero exit code when spawned executable subcommand terminates due to a signal ([#2023])
  • Breaking: check passThroughOptions constraints when using .addCommand and throw if parent command does not have .enablePositionalOptions() enabled ([#1937])
Changed
  • Breaking: Commander 12 requires Node.js v18 or higher ([#2027])
  • Breaking: throw an error if add an option with a flag which is already in use ([#2055])
  • Breaking: throw an error if add a command with name or alias which is already in use ([#2059])
  • Breaking: throw error when calling .storeOptionsAsProperties() after setting an option value ([#1928])
  • replace non-standard JSDoc of @api private with documented @private ([#1949])
  • .addHelpCommand() now takes a Command (passing string or boolean still works as before but deprecated) ([#2087])
  • refactor internal implementation of built-in help option ([#2006])
  • refactor internal implementation of built-in help command ([#2087])
Deprecated
  • .addHelpCommand() passing string or boolean (use .helpCommand() or pass a Command) ([#2087])
Removed
  • Breaking: removed default export of a global Command instance from CommonJS (use the named program export instead) ([#2017])
Migration Tips

global program

If you are using the deprecated default import of the global Command object, you need to switch to using a named import (or create a new Command).

// const program = require('commander');
const { program } = require('commander');

option and command clashes

A couple of configuration problems now throw an error, which will pick up issues in existing programs:

  • adding an option which uses the same flag as a previous option
  • adding a command which uses the same name or alias as a previous command
View originalPermalink
How 12.0.0 went

12.0.0-1

Pre-release

(Released in 12.0.0)

View originalPermalink
How 12.0.0-1 went

12.0.0-0

Pre-release

(Released in 12.0.0)

View originalPermalink
How 12.0.0-0 went

11.1.0

Added 4
  • Add registeredArguments property on Command with the array of defined Argument, like Command.options for Option
  • Add TypeScript declarations for Option properties: envVar, presetArg
  • Add TypeScript declarations for Argument properties: argChoices, defaultValue, defaultValueDescription
  • Add example file showing how to configure help to display any custom usage in the list of subcommands
Changed 1
  • Refactor TypeScript configs for multiple use-cases, and enable checks in JavaScript files in supporting editors
Fixed 4
  • Update TypeScript OptionValueSource to allow any string, to match supported use of custom sources
  • Add TypeScript type that Command.version() can also be used as getter
  • Add null return type to Commands.executableDir() TypeScript declaration, for when not configured
  • Fix subcommands with an executable handler and only a short help flag to be handled correctly by the parent's help command
Deprecated 1
  • Command._args is now available as registeredArguments

From Commander.js

Fixed
  • TypeScript: update OptionValueSource to allow any string, to match supported use of custom sources ([#1983])
  • TypeScript: add that Command.version() can also be used as getter ([#1982])
  • TypeScript: add null return type to Commands.executableDir(), for when not configured ([#1965])
  • subcommands with an executable handler and only a short help flag are now handled correctly by the parent's help command ([#1930])
Added
  • registeredArguments property on Command with the array of defined Argument (like Command.options for Option) ([#2010])
  • TypeScript declarations for Option properties: envVar, presetArg ([#2019])
  • TypeScript declarations for Argument properties: argChoices, defaultValue, defaultValueDescription ([#2019])
  • example file which shows how to configure help to display any custom usage in the list of subcommands ([#1896])
Changed
  • (developer) refactor TypeScript configs for multiple use-cases, and enable checks in JavaScript files in supporting editors ([#1969])
Deprecated
  • Command._args was private anyway, but now available as registeredArguments ([#2010])
View originalPermalink
How 11.1.0 went

11.0.0

Changed 3
  • leading and trailing spaces are now ignored by the .arguments() method
  • refine types exports for ESM to follow TypeScript guidelines
  • Commander 11 requires Node.js v16 or higher
Fixed 1
  • help command works when help option is disabled

From Commander.js

Fixed
  • help command works when help option is disabled ([#1864])
Changed
  • leading and trailing spaces are now ignored by the .arguments() method ([#1874])
  • refine "types" exports for ESM to follow TypeScript guidelines ([#1886])
  • Breaking: Commander 11 requires Node.js v16 or higher
View originalPermalink
How 11.0.0 went
View all

Discussion