Socket
Socket
Sign inDemoInstall

cli-argparse

Package Overview
Dependencies
0
Maintainers
1
Versions
42
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    cli-argparse

Lightweight argument parser


Version published
Weekly downloads
293
decreased by-2.66%
Maintainers
1
Install size
48.0 kB
Created
Weekly downloads
 

Readme

Source

Table of Contents

  • Parse

Parse

Build Status npm version Coverage Status.

Lightweight yet feature rich argument parser.

This module does not define any options or any program requirements it simply parses arguments into an object structure that is easier for other modules to work with.

Features

  • Supports multiple option values as arrays.
  • Supports long flag negations, eg: --no-color.
  • Supports --option=value, --option value and option=value.
  • Expands short flags such as -xvf.
  • Supports multiple flags as numbers: -ddd.
  • Assignment on last flag expansion -xvf file.tgz.
  • Treat - as special stdin flag.
  • Stop argument parsing on --.
  • Comprehensive test suite.
  • 100% code coverage.

Install

npm install cli-argparse

Example

var parse = require('./index');
var args = [
  'server',
  'start',
  '-xvd',
  '--port=80',
  '--config',
  '-',
  '--config=config.json',
  '--log',
  'server.log',
  '--no-color'
];
var result = parse(args);
console.log(JSON.stringify(result, undefined, 2));
{
  "flags": {
    "x": true,
    "v": true,
    "d": true,
    "color": false
  },
  "options": {
    "port": "80",
    "config": [
      "-",
      "config.json"
    ],
    "log": "server.log"
  },
  "raw": [
    "server",
    "start",
    "-xvd",
    "--port=80",
    "--config",
    "-",
    "--config=config.json",
    "--log",
    "server.log",
    "--no-color"
  ],
  "stdin": true,
  "unparsed": [
    "server",
    "start"
  ],
  "strict": false,
  "vars": {}
}

API

var parse = require('cli-argparse');
var result = parse();
console.dir(result);

parse([args], [options])

  • args: Specific arguments to parse, default is process.argv.slice(2).
  • options: Parsing configuration options.

Returns a result object.

Options
  • alias: Map of argument names to property names.
  • flags: Array of argument names to be treated as flags.
  • options: Array of argument names to be treated as options.
  • short: Allow short options to have values.
  • strict: A boolean that indicates only arguments specified as options or flags should be parsed.
  • flat: A boolean that creates a flat result structure.
  • stop: Array of strings or patterns to stop parsing on, the special pattern -- is always respected first.
  • vars: A string or regexp used to collect variables into the vars object.
  • camelcase: When false do not convert option names to camelcase; when a string or regexp split the option name on the given pattern for conversion to camelcase.
Result

The result object contains the fields:

  • flags: Object containing arguments treated as flags.
  • options: Object containing arguments treated as options with values.
  • raw: Array of the raw arguments parsed.
  • stdin: Boolean indicating whether - is present in the argument list.
  • unparsed: Array of values that were not parsed.
  • skip: Array of args skipped upon -- or a custom stop pattern.
  • stop: If a stop pattern matched this will contain the pattern that matched (string or regexp).
  • empty: Set to true if a stop pattern matched on the first argument.
  • vars: Variables collected when the vars option is configured.
Aliases

Aliases allow arguments to map to meaningful property names that will be set on the result object options and flags.

Aliases are mapped on the raw argument name, to map -v | --verbose to a verbose property use {'-v --verbose': 'verbose'}.

Note that you should not use the negated long form (--no-highlight) when specifying these hints, always use the positive form.

Flags

Use the flags array when you need to force a long argument to be treated as a flag, for example ['--syntax-highlight'].

Options

Use the options array when you need to treat a short argument as accepting a value, for example ['-f'].

Strict

A boolean that indicates that only known arguments (those declared in the options and flags properties) are accepted, all other arguments will be placed in the unparsed array.

Flat

Creating a flat result can be useful if you are certain that there are no naming collisions, typically this can be achieved by providing hints using flags and options.

When this option is specified the result object will not have a flags property, instead all flags and options will be in the options property of the result.

Vars

Sometimes it is useful to collect arguments following a convention, for example -D like java or maybe all arguments prefixed with @. When the vars option is set all arguments that match the convention are collected in to the vars result object, see the vars test spec for examples.

Developer

Test

To run the test suite:

npm test

Cover

To generate code coverage run:

npm run cover

Lint

Run the source tree through jshint and jscs:

npm run lint

Clean

Remove generated files:

npm run clean

Readme

To build the readme file from the partial definitions (requires mdp):

npm run readme

License

Everything is MIT. Read the license if you feel inclined.

Generated by mdp(1).

Keywords

FAQs

Last updated on 06 Apr 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc