npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

pxi-args

v0.5.2

Published

A command-line arguments parser for pxi (pixie), the small, fast, and magical command-line data processor

Downloads

11

Readme

pxi teaser

pxi-args is a command-line arguments parser for pxi (pixie), the small, fast, and magical command-line data processor.

node version npm version license PRs Welcome linux unit tests status macos unit tests status windows unit tests status

Installation

Installation is done using npm.

$ npm i --save pxi-args

Work in Progress

This project is work in progress. Use it at your own risk!

pxi-args

pxi-args is the command-line argument parser used by pxi.

Defining Command-Line Arguments

The following definitions of answerCmd are identical:

const answerCmd = {key: 'answer', args: ['--answer', '-a'], types: ['number'], only: [42]}
const answerCmd = number('answer', ['--answer', '-a'], {only: [42]})

const questionCmd = string('question', ['--question'])

You may either describe command-line arguments using a plain object or a type function like number or string from the functional DSL.

The definition of answerCmd reads as follows:

answerCmd is a command-line argument that is read to the answer key and is set using either --answer or -a. It must be followed by exactly one number that can only be 42.

The object syntax takes key, args, and types as keys, while the type function syntax takes key and args as the first two arguments and sets types depending on the type function. Additional fields are passed as additional keys in the object syntax or in an object as the third parameter in the type function syntax.

Fields

The following command-line argument fields are available:

| Field | Value | Default | Description | |---------|--------------------------------------------------------------|---------|------------------------------------------------------------------------------------------------------------------------------------------------| | key | string | null | The command-line argument's value is assigned to a key of this name. | | args | array of strings | [] | A list of options that may be used to set the command-line option. | | desc | string | '' | Description of the command-line argument for use in the usage text. | | only | array of values | null | The command-line argument's value can only be one of the values in this list. If only is null, the value may be set freely. | | opts | command-line option object | null | This field is only used if the command-line argument is a command (if types is null). | | types | ['number'] | | This command-line argument takes exactly one number. | | types | ['string'] | | This command-line argument takes exactly one string. | | types | ['bool'] | | This command-line argument takes exactly one boolean, true or false. | | types | ['number','string'] | | This command-line argument takes exactly two values, a number and a string. | | types | [] | | This command-line argument takes no value. It is a flag that is true if used and false if not used. | | types | null | | This command-line argument is a command. It may have its own list of arguments (see opts) and is terminated by either -- or a line ending. |

Functional DSL

The following type functions are available to generate command-line arguments:

| Function | Description | |-----------------------------------|------------------------------------------------------------| | array(types)(key, args, fields) | Assigns types, key, and args to fields. | | bool(key, args, fields) | Assigns types: ['bool'], key and args to fields. | | command(key, args, fields) | Assigns types: null, key and args to fields. | | flag(key, args, fields) | Assigns types: [], key and args to fields. | | number(key, args, fields) | Assigns types: ['number'], key and args to fields. | | string(key, args, fields) | Assigns types: ['string'], key and args to fields. |

Defining Command-Line Options

Command-line options are very similar to command-line arguments. In fact, most command-line parsers use the option function to generate them based on command-line arguments.

The following definitions of answerOpt are identical:

const answerOpt = {
  errs: [],
  args: {
    '--answer': [{key: 'answer', types: ['number'], only: [42]}],
    '-a':       [{key: 'answer', types: ['number'], only: [42]}]
  }
}
const answerOpt = option(answerCmd)

You may either describe command-line options using a plain object or the option function that takes a command-line argument.

The definition of answerOpt reads as follows:

answerOpt is a command-line option that has no errors and the following arguments: --answer is an argument that is read to the answer key and must be followed by exactly one number that can only be 42. -a is an argument that is read to the answer key and must be followed by exactly one number that can only be 42.

The reason why options are defined redundant is because that makes it easier for parsers to look them up. Command-line arguments exist, because their syntax is easier to parse for usage generators.

Several Command-line options may be combined:

const questionOpt = option(questionCmd)

const combinedOpt = combine(questionOpt, answerOpt)
const combinedOpt = {
  errs: [],
  args: {
    '--question': [{key: 'question', types: ['string']}],
    '--answer':   [{key: 'answer',   types: ['number'], only: [42]}],
    '-a':         [{key: 'answer',   types: ['number'], only: [42]}]
  }
}

The combinedOpt includes questionOpt as well as answerOpt. If either one has errors, they are gathered in the errs array. Setting errors explicitly does not make much sense. However, option uses errs if e.g. a command-line argument does not set an arg or has an empty args.

In some cases (most cases actually), an answer is not a number but a string.

const answerStrCmd = string('answerStr', ['-a']})
const answerStrOpt = option(answerStrCmd)

const combinedOpt  = combine(answerCmd, answerStrCmd)
const combinedOpt  = {
  errs: [],
  args: {
    '--answer': [
      {key: 'answer',    types: ['number'], only: [42]}
    ],
    '-a': [
      {key: 'answer',    types: ['number'], only: [42]}
      {key: 'answerStr', types: ['string']}
    ]
  }
}

Here, a new command-line argument answerStr is defined that has the same argument -a as answer. If options of both command-line arguments are combined, the -a argument is interpreted twice: By answer as a number that can only be 42, as well as by answerStr as a string without restrictions. An option can only be written two several keys, if the number of its arguments match. If combine tries to adds another interpretation to an argument that does not have the same number of keys, an error is recorded instead.

Defining Command-Line Parsers

Command-line parsers combine command-line options with parser plugins to process the command-line string given to a command-line program. The following parser uses combinedOpts:

const deepThought = opts => parser(
  splitShortOptions,
  parseArgs(opts),
  mergeArgs()
)(opts)

const parse = deepThought(combinedOpt)

const result = parse(sliceArgv({argv: process.argv}))

The deepThought parser lets you parse command line input of the following kind:

$ node index.js --question "What is the answer to everything?" -a 42

Which would be equivalent to the following:

const result = {
  errs: [],
  argv: {
    "_": [],
    question: "What is the answer to everything?",
    answer: 42
  }
}

Parser Plugins

The following parser plugins are available:

| Plugin | Description | |-----------------------------------|-----------------------------------------------------------------------------------------------------------------| | sliceArgv({errs, argv}) | Removes the first two elements from a process.argv array, as they are meta data. | | splitShortOptions({errs, argv}) | Splits argument groups of shape -vs to -v -s. Only works if the arguments are preceded by a single dash. | | parseArgs({args})({errs, argv}) | Groups arguments together with their values, types, and options if an argument is a command. | | mergeArgs(parser)({errs, argv}) | Casts values to their types, validates values, and outputs the parsing result in a hierarchical JSON structure. |

Note that not every combination of plugins produces a valid parser.

Reporting Issues

Please report issues in the tracker!

Contributing

We are open to, and grateful for, any contributions made by the community. By contributing to pixie, you agree to abide by the code of conduct. Please read the contributing guide.

License

pxi-args is MIT licensed.