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

argumentative

v2.0.28

Published

Parses the argv array.

Downloads

624

Readme

Argumentative

Parses the argv array.

Installation

You can install Argumentative with npm:

npm install argumentative

You can also clone the repository with Git:

git clone https://github.com/djalbat/argumentative.git

There are no dependencies to install.

Usage

Aside from some string utilities, there is only one parseArgv() function. It takes the argv array and an optional map of abbreviations as its first and second arguments, respectively:

const { parseArgv } = require("argumentative");

const { argv } = process;

const abbreviations = {
  "h": "help",
  "v": "version"
};

const { commands, options } = parseArgv(argv, abbreviations);

...

The return value is a plain old JavaScript object with the following properties:

  • interpreterPath - The first element of the argv array. This is fully qualified path of interpreter running the script.

  • filePath - The second element of the argv array. This will be the fully qualified path of the script itself.

  • args - An array of the remaining arguments, possibly empty if no command line arguments were passed.

  • options - A map of option names to their values.

  • commands - An array of the elements of the argv array that are not options.

If you pass a map of abbreviations, abbreviated names in the options map will be replaced with their corresponding unabbreviated names. If corresponding unabbreviated and abbreviated options are present, the latter are removed.

Options in kebab case will be converted to camel case. On the other hand, snake case is left as-is. If you want to convert snake case commands or options to camel case, by the way, you can make use of the snakeCaseToCamelCase() utility function. For example:

const argumentative = require("argumentative");

const { stringUtilities } = argumentative,
      { snakeCaseToCamelCase } = stringUtilities,
      { argv } = process;

let { commands } = parseArg(argv);

commands = commands.map((command) => snakeCaseToCamelCase(command));

...

Obviously you may only want to convert specific commands in this way rather than all of them, or not do so at all.

Examples

The command line arguments are given first, followed by the plain old JavaScript object that the parseArgv() function returns. Only the options and commands properties are given. These first two examples have no abbreviations.

A single command; and no options:

install
{
  "options": {},
  "commands": [
    "install"
  ]
}

A single command; a shorthand, boolean option; and a full length, string-valued option:

build -c --file-path=./main.js
{
  "options": {
    "c": true,
    "filePath": "./main.js"
  },
  "commands": [
    "build"
  ]
}

Note that the --file-path option becomes the camel case filePath.

No commands; two shorthand options, boolean and string-valued, respectively; and a full length, string-valued option:

-cf=./index.js --file-path=./main.js
{
  "options": {
    "compile": true,
    "filePath": "./main.js"
  },
  "commands": []
}

This last example has the following abbreviations:

{
  "c": "compile",
  "f": "file-path"
}

Note that the abbreviated option name c has been replaced by the corresponding unabbreviated name, whilst the abbreviated option f has been removed altogether.

Contact