Meow

CLI app helper

README

meow


CLI app helper


undefined

I would recommend reading this guide on how to make user-friendly command-line tools.

Features


- Parses arguments
- Converts flags to camelCase
- Negates flags when using the --no- prefix
- Outputs version when --version
- Outputs description and supplied help text when --help
- Makes unhandled rejected promises fail hard instead of the default silent fail
- Sets the process title to the binary name defined in package.json

Install


  1. ```
  2. $ npm install meow
  3. ```

Usage


  1. ```
  2. $ ./foo-app.js unicorns --rainbow
  3. ```

  1. ```js
  2. #!/usr/bin/env node
  3. import meow from 'meow';
  4. import foo from './lib/index.js';

  5. const cli = meow(`
  6. Usage
  7.    $ foo <input>

  8. Options
  9.    --rainbow, -r  Include a rainbow

  10. Examples
  11.    $ foo unicorns --rainbow
  12.    unicorns
  13. `, {
  14. importMeta: import.meta,
  15. flags: {
  16.   rainbow: {
  17.    type: 'boolean',
  18.    alias: 'r'
  19.   }
  20. }
  21. });
  22. /*
  23. {
  24. input: ['unicorns'],
  25. flags: {rainbow: true},
  26. ...
  27. }
  28. */

  29. foo(cli.input[0], cli.flags);
  30. ```

API


meow(helpText, options?)

meow(options)


Returns an object with:

- input (Array) - Non-flag arguments
- flags (Object) - Flags converted to camelCase excluding aliases
- unnormalizedFlags (Object) - Flags converted to camelCase including aliases
- pkg (Object) - The package.json object
- help (string) - The help text used with --help
- showHelp([exitCode=2]) (Function) - Show the help text and exit with exitCode
- showVersion() (Function) - Show the version text and exit

helpText


Type: string

Shortcut for the help option.

options


Type: object

importMeta

Type: object

Pass in [import.meta](https://nodejs.org/dist/latest/docs/api/esm.html#esm_import_meta). This is used to find the correct package.json file.

flags

Type: object

Define argument flags.

The key is the flag name in camel-case and the value is an object with any of:

- type: Type of value. (Possible values: string boolean number)
- alias: Usually used to define a short flag alias.
- default: Default value when the flag is not specified.
- isRequired: Determine if the flag is required. (Default: false)
- If it's only known at runtime whether the flag is required or not, you can pass a Function instead of a boolean, which based on the given flags and other non-flag arguments, should decide if the flag is required. Two arguments are passed to the function:
- The first argument is the flags object, which contains the flags converted to camel-case excluding aliases.
- The second argument is the input string array, which contains the non-flag arguments.
- The function should return a boolean, true if the flag is required, otherwise false.
- isMultiple: Indicates a flag can be set multiple times. Values are turned into an array. (Default: false)
- Multiple values are provided by specifying the flag multiple times, for example, $ foo -u rainbow -u cat. Space- or comma-separated values are [currently not supported](https://github.com/sindresorhus/meow/issues/164).

Note that flags are always defined using a camel-case key (myKey), but will match arguments in kebab-case (--my-key).

Example:

  1. ```js
  2. flags: {
  3. unicorn: {
  4.   type: 'string',
  5.   alias: 'u',
  6.   default: ['rainbow', 'cat'],
  7.   isMultiple: true,
  8.   isRequired: (flags, input) => {
  9.    if (flags.otherFlag) {
  10.     return true;
  11.    }

  12.    return false;
  13.   }
  14. }
  15. }
  16. ```

description

Type: string | boolean\
Default: The package.json "description" property

Description to show above the help text.

Set it to false to disable it altogether.

help

Type: string | boolean

The help text you want shown.

The input is reindented and starting/ending newlines are trimmed which means you can use a template literal without having to care about using the correct amount of indent.

The description will be shown above your help text automatically.

version

Type: string | boolean\
Default: The package.json "version" property

Set a custom version output.

autoHelp

Type: boolean\
Default: true

Automatically show the help text when the --help flag is present. Useful to set this value to false when a CLI manages child CLIs with their own help text.

This option is only considered when there is only one argument in process.argv.

autoVersion

Type: boolean\
Default: true

Automatically show the version text when the --version flag is present. Useful to set this value to false when a CLI manages child CLIs with their own version text.

This option is only considered when there is only one argument in process.argv.

pkg

Type: object\
Default: Closest package.json upwards

package.json as an object.

You most likely don't need this option.

argv

Type: string[]\
Default: process.argv.slice(2)

Custom arguments object.

inferType

Type: boolean\
Default: false

Infer the argument type.

By default, the argument 5 in $ foo 5 becomes a string. Enabling this would infer it as a number.

booleanDefault

Type: boolean | null | undefined\
Default: false

Value of boolean flags not defined in argv.

If set to undefined, the flags not defined in argv will be excluded from the result.
The default value set in boolean flags take precedence over booleanDefault.

_Note: If used in conjunction with isMultiple, the default flag value is set to []._

__Caution: Explicitly specifying undefined for booleanDefault has different meaning from omitting key itself.__

Example:

  1. ```js
  2. import meow from 'meow';

  3. const cli = meow(`
  4. Usage
  5.    $ foo

  6. Options
  7.    --rainbow, -r  Include a rainbow
  8.    --unicorn, -u  Include a unicorn
  9.    --no-sparkles  Exclude sparkles

  10. Examples
  11.    $ foo
  12.    unicorns
  13. `, {
  14. importMeta: import.meta,
  15. booleanDefault: undefined,
  16. flags: {
  17.   rainbow: {
  18.    type: 'boolean',
  19.    default: true,
  20.    alias: 'r'
  21.   },
  22.   unicorn: {
  23.    type: 'boolean',
  24.    default: false,
  25.    alias: 'u'
  26.   },
  27.   cake: {
  28.    type: 'boolean',
  29.    alias: 'c'
  30.   },
  31.   sparkles: {
  32.    type: 'boolean',
  33.    default: true
  34.   }
  35. }
  36. });
  37. /*
  38. {
  39. flags: {
  40.   rainbow: true,
  41.   unicorn: false,
  42.   sparkles: true
  43. },
  44. unnormalizedFlags: {
  45.   rainbow: true,
  46.   r: true,
  47.   unicorn: false,
  48.   u: false,
  49.   sparkles: true
  50. },
  51. }
  52. */
  53. ```

hardRejection

Type: boolean\
Default: true

Whether to use [hard-rejection](https://github.com/sindresorhus/hard-rejection) or not. Disabling this can be useful if you need to handle process.on('unhandledRejection') yourself.

allowUnknownFlags

Type boolean\
Default: true

Whether to allow unknown flags or not.

Promises


Meow will make unhandled rejected promises fail hard instead of the default silent fail. Meaning you don't have to manually.catch() promises used in your CLI.

Tips


See [chalk](https://github.com/chalk/chalk) if you want to colorize the terminal output.

See [get-stdin](https://github.com/sindresorhus/get-stdin) if you want to accept input from stdin.

See [conf](https://github.com/sindresorhus/conf) if you need to persist some data.

See [update-notifier](https://github.com/yeoman/update-notifier) if you want update notifications.



Get professional support for this package with a Tidelift subscription
Tidelift helps make open source sustainable for maintainers while giving companies
assurances about security, maintenance, and licensing for their dependencies.