Socket
Book a DemoInstallSign in
Socket

cli-bespoke

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cli-bespoke

Parse and validate commandlines. Simple, well-typed and customizable.

0.2.0
latest
npmnpm
Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

cli-bespoke

Parse and validate commandlines. Simple, well-typed and customizable.

No dependencies.

Usage

To parse any commandline, use parse() (or parseLazy()) and pass Converter functions for each option.

type Converter<Input, Output> = (value: Input, sendError: ErrorSender) => Output;

The return type is determined by which Converter you pass.
There are several built-in Converters, but you can also pass user-defined ones.

Example

import {
  parse,
  flag,
  first,
  converters as cv,
  converterFactories as cvf,
} from "cli-bespoke";

const args = parse({
  // Arguments to parse.
  args: process.argv.slice(2),

  // Specify all options and their `Converter` functions.
  convert: {
    // Error if either undefined, zero or multiple values.
    _: cv.justOne,

    // No values. Parsed as boolean.
    help: flag,

    // Error if multiple values.
    outfile: cv.optionalOne,

    // Split strings, accepting undefined.
    strs: cvf.optional(cvf.split(",")),

    // A complex example including user-defined converter.
    nums: first(cvf.zeroOrMore(cv.int)).then(cvf.map((n) => n + 1)),
  },

  // Option names and their aliases (not required).
  alias: {
    // -h will be parsed as --help
    help: "h",
  },
});

The result will be typed as follows:

const args: {
  _: string;
  help: boolean;
  outfile: string | undefined;
  strs: string[] | undefined;
  nums: number[]
}

Details about convert:

  • Underscore _ is for parameters that do not belong to any options.
  • Use flag for options that do not receive values.
  • All values are readonly string[] | undefined before converting.
  • Namespace converters provides built-in Converters.
  • Namespace converterFactories provieds functions that produces Converters.
  • You can also use any user-defined converter function.
  • Use first()/then() for chaining multiple Converters.

Config

You can replace any field of config.

import { config } from "cli-bespoke";

config.onError = (err) => {
  console.error(err);
  process.exit(1);
};

Keywords

cli

FAQs

Package last updated on 11 Feb 2021

Did you know?

Socket

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.