clarg

0.0.4 • Public • Published

clarg

NPM Version NPM Downloads Travis build Coveralls coverage

The simplest command-line parsing utility for node.js

Why create another library for this?

All of the existing libraries (i.e. commander or nomnom) require you to specify upfront what options you expect.

Clarg simply returns you a full set of arguments it found allowing you to bind everything in any way you want, anywhere you want.

No questions asked, no prescribed way of doing things. Just a simple object.

Usage

Simply import clarg anywhere in your code and it will output an object.

You don't have to specify any options upfront, just require this module and execute it.

It doesn't matter where in code you run it - you will always get the same result which is really just a broken down list of arguments and options passed to the process.

It supports options specified with single dashes, double dashes and their values after a space or an equal sign.

The only thing that matters is the order: first you specify arguments, after the first dash has been spotted everything gets treated as an option.

Example

Running the script below with these arguments node test.js start countdown --format=long -detach -parse=yes will produce an object like this:

{
  args: [ 'start', 'countdown' ],
  opts: { format: 'long', detach: true, parse: 'yes' },
  raw: [ 'start', 'countdown', '--format=long', '-detach', '-parse=yes' ]
}

Dependents (7)

Package Sidebar

Install

npm i clarg

Weekly Downloads

3,079

Version

0.0.4

License

ISC

Last publish

Collaborators

  • vot