2.0.2 • Published 29 days ago

@jakubmazanec/args v2.0.2

Weekly downloads
-
License
LGPL-3.0-only
Repository
github
Last release
29 days ago

@jakubmazanec/args

TypeScript-first library for parsing command line arguments.

Installation

npm install @jakubmazanec/args

⚠️ This is an ESM package! It cannot be required from a CommonJS module.

Prerequisites

  • Node.js 20 or later
  • TypeScript 5 or later

Usage

Main purpose of this library is to parse command line arguments. Such command line can look like this:

┌─ 1 ─┐ ┌─ 2 ──┐ ┌─── 3 ───┐ ┌─── 4 ───┐ ┌─ 5 ─┐ ┌ 6 ┐ ┌─── 7 ───┐    ┌─────── 8 ──────┐
binname do stuff --key value --key=value -key -K -aBCd foo bar baz -- --key value bar -B
└───────────────────────────────────────── 9 ──────────────────────────────────────────┘
  1. Binary name. This is never passed to the parser.
  2. Command name.
  3. Option with a value. Option name can be in camel case or kebab case.
  4. Another way to specify an option with a value.
  5. Boolean options don't have to specify value to be true. Options can also be defined using a short option form.
  6. Short options group; usually used for boolean options.
  7. Parameters.
  8. Rest arguments appear after the --; they are not parsed, but still included in the result.
  9. The whole command line.

The parser is strict and returns fully typed result. You can use it by calling parseArguments function with the list of arguments and parser configuration:

import {parseArguments} from '@jakubmazanec/args';

let {command, parameters, options} = parseArguments(process.argv.slice(2), {
  commands: ['run', 'build'],
  parameters: [{
    description: 'File name',
    type: 'string',
    required: true,
  }],
  options: {
    help: {
      type: 'boolean'
    }
  }
});

console.log(command); // type of `command` is `'run' | 'build' | undefined`
console.log(parameters); // type of `parameters` is `[string | undefined]`
console.log(options); // type of `options` is `{help: boolean | undefined}`

See ParserConfig for more information about how to configure the parser.

Documentation

See API reference for auto-generated documentation.

Contributing

If you want to contribute, see CONTRIBUTING for details.

License

This package is licensed under the GNU Lesser General Public License v3. See LICENSE for details.

2.0.2

29 days ago

2.0.1-next.1788346

3 months ago

2.0.1-next.60933d4

3 months ago

2.0.1-next.007199a

3 months ago

2.0.1

3 months ago

2.0.1-next.b10d52c

3 months ago

2.0.1-next.01330c0

3 months ago

2.0.1-next.4fd23cd

3 months ago

2.0.0

4 months ago

2.0.0-next.6fd9f2b

4 months ago

2.0.0-next.2fa8a2c

4 months ago

2.0.0-next.b3909a5

4 months ago

2.0.0-next.bc04e4f

4 months ago

1.0.1-next.336fe21

10 months ago

1.0.3-next.9befaf5

7 months ago

1.0.1-6cee770

11 months ago

1.0.1-c2efc51

10 months ago

1.0.3-next.9d07aa7

8 months ago

1.0.1-dee6883

10 months ago

1.0.3-next.b415399

8 months ago

2.0.0-next.7a1e391

7 months ago

1.0.1-8a0a4d5

10 months ago

1.0.2-a1d4551

10 months ago

1.0.3-next.d2852b5

8 months ago

1.0.1-2f12db0

10 months ago

1.0.1-bc209e5

11 months ago

2.0.0-next.7305494

7 months ago

1.0.3-next.9d6cd14

8 months ago

2.0.0-next.b19329b

7 months ago

2.0.0-next.f3375f0

7 months ago

1.0.3-next.50761cf

8 months ago

1.0.3-next.439463c

8 months ago

1.0.3-next.75b0d46

8 months ago

1.0.1-7dbb232

10 months ago

2.0.0-next.f9ef3d7

7 months ago

1.0.2

9 months ago

1.0.1

10 months ago

1.0.2-2487994

10 months ago

2.0.0-next.a956e19

7 months ago

1.0.3-next.ce9dbc3

8 months ago

1.0.2-b8faa49

9 months ago

1.0.2-next.121ef1e

9 months ago

1.0.3-next.1b2cc9c

8 months ago

1.0.1-2d1145f

11 months ago

1.0.1-5f6d70c

11 months ago

1.0.1-c5ebb6f

11 months ago

1.0.1-593aae1

11 months ago

1.0.1-265acad

11 months ago

1.0.1-11dd4a3

11 months ago

1.0.1-9029e49

11 months ago

1.0.1-a500263

11 months ago

1.0.0

1 year ago

1.0.0-fea335c

1 year ago

1.0.0-de51f16

1 year ago