Skip to main content
Module

x/cliffy/flags/README.md

Command line framework for deno 🦕 Including Commandline-Interfaces, Prompts, CLI-Table, Arguments Parser and more...
Extremely Popular
Go to Latest
File

Cliffy ❯ Flags

Version Build status issues Deno version doc Discord License
Discord nest.land badge

Command line arguments parser for Deno
>_ Used by cliffy’s command module

❯ Content

❯ Install

This module can be imported directly from the repo and from following registries.

Deno Registry

import { parseFlags } from "https://deno.land/x/cliffy@<version>/flags/mod.ts";

Nest Registry

import { parseFlags } from "https://x.nest.land/cliffy@<version>/flags/mod.ts";

Github

import { parseFlags } from "https://raw.githubusercontent.com/c4spar/deno-cliffy/<version>/flags/mod.ts";

❯ Usage

import { parseFlags } from "https://deno.land/x/cliffy/flags/mod.ts";

console.log(parseFlags(Deno.args));
$ deno run https://deno.land/x/cliffy/examples/flags/flags.ts -a foo -b bar
{ flags: { a: "foo", b: "bar" }, unknown: [], literal: [] }

$ deno run https://deno.land/x/cliffy/examples/flags/flags.ts -x 3 -y.z -n5 -abc --beep=boop foo bar baz --deno.land -- --cliffy
{
  flags: {
    x: "3",
    y: { z: true },
    n: "5",
    a: true,
    b: true,
    c: true,
    beep: "boop",
    deno: { land: true }
  },
  unknown: [ "foo", "bar", "baz" ],
  literal: [ "--cliffy" ]
}

With Options

import {
  OptionType,
  parseFlags,
} from "https://deno.land/x/cliffy/flags/mod.ts";

const result = parseFlags(Deno.args, {
  allowEmpty: true,
  stopEarly: true,
  flags: [{
    name: "help",
    aliases: ["h"],
    // a standalone option cannot be combined with other options
    standalone: true,
  }, {
    name: "verbose",
    aliases: ["v"],
    // allow to define this option multiple times on the command line
    collect: true,
    // make --verbose incremental: turn value into an number and increase the value for each --verbose option
    value: (val: boolean, previous = 0) => val ? previous + 1 : 0,
  }, {
    name: "debug",
    aliases: ["d"],
    type: OptionType.BOOLEAN,
    optionalValue: true,
  }, {
    name: "silent",
    aliases: ["s"],
  }, {
    name: "amount",
    aliases: ["n"],
    type: OptionType.NUMBER,
    requiredValue: true,
  }, {
    name: "file",
    aliases: ["f"],
    type: OptionType.STRING,
    // file cannot be combined with stdin option
    conflicts: ["stdin"],
  }, {
    name: "stdin",
    aliases: ["i"],
    // stdin cannot be combined with file option
    conflicts: ["file"],
  }],
});

console.log(result);
$ deno run https://deno.land/x/cliffy/examples/flags/options.ts -vvv -n5 -f ./example.ts -d 1 -s foo bar baz --beep -- --boop
{
  flags: { verbose: 3, amount: 5, file: "./example.ts", debug: true, silent: true },
  unknown: [ "foo", "bar", "baz", "--beep" ],
  literal: [ "--boop" ]
}

Error handling

You can catch command validation errors with the ValidationError class. A validation error is thrown when an invalid command is invoked by the user.

import {
  parseFlags,
  ValidationError,
} from "https://deno.land/x/cliffy/flags/mod.ts";

try {
  const flags = parseFlags(Deno.args, {
    flags: [{
      name: "debug",
    }],
  });
  console.log(flags);
} catch (error) {
  // Command validation error.
  if (error instanceof ValidationError) {
    console.log("[VALIDATION_ERROR] %s", error.message);
    Deno.exit(1);
  }
  // General error or invalid configuration.
  throw error;
}
$ deno run https://deno.land/x/cliffy/examples/flags/error_handling.ts -d
[VALIDATION_ERROR] Unknown option "-d". Did you mean option "--debug"?

❯ Options

parseFlags Options

Param Type Required Description
allowEmpty boolean No Allow no arguments. Defaults to false
stopEarly boolean No If enabled, all values starting from the first non option argument will be added to unknown.
flags IFlagOptions[] No Array of flag options.
parse function No Custom type parser.
option (option: IFlagOptions, value?: unknown) => void No A callback function that will be called for every parsed option.

Flag Options

Param Type Required Description
name string Yes The name of the option.
args IFlagArgument[] No An Array of argument options.
aliases string[] No Array of option alias’s.
standalone boolean No Cannot be combined with other options.
default any No Default option value.
required boolean No Mark option as required and throw an error if the option is missing.
depends string[] No Array of option names that depends on this option.
conflicts string[] No Array of option names that conflicts with this option.
collect boolean No Allow to call this option multiple times and add each value to an array which will be returned as result.
value ( val: any, previous?: any ) => any No Custom value processing.

Argument options

Param Type Required Description
type OptionType | string no Type of the argument.
optionalValue boolean no Make argument optional.
requiredValue boolean no Make argument required.
variadic boolean no Make arguments variadic.
list boolean no Split argument by separator.
separator string no List separator. Defaults to ,

OptionType

  • OptionType.BOOLEAN

  • OptionType.STRING

  • OptionType.NUMBER

  • OptionType.INTEGER

❯ Custom type processing

import { ITypeInfo, parseFlags } from "https://deno.land/x/cliffy/flags/mod.ts";

parseFlags(Deno.args, {
  flags: [{
    name: "foo",
    type: "float",
  }],
  parse: ({ label, name, value, type }: ITypeInfo) => {
    switch (type) {
      case "float":
        if (isNaN(Number(value))) {
          throw new Error(
            `${label} "${name}" must be of type "${type}", but got "${value}".`,
          );
        }
        return parseFloat(value);
      default:
        throw new Error(`Unknown type "${type}".`);
    }
  },
});
$ deno run https://deno.land/x/cliffy/examples/flags/custom_option_processing.ts --foo 1.2
{ flags: { foo: 1.2 }, unknown: [], literal: [] }

$ deno run https://deno.land/x/cliffy/examples/flags/custom_option_processing.ts --foo abc
error: Uncaught Error: Option "--foo" must be of type "float", but got "abc".

❯ Custom value processing

import {
  OptionType,
  parseFlags,
} from "https://deno.land/x/cliffy/flags/mod.ts";

const result = parseFlags(Deno.args, {
  flags: [{
    name: "value",
    aliases: ["v"],
    type: OptionType.STRING,
    // if collect is enabled, previous values are passed to the value method.
    collect: true,
    // Value handler can be used:
    //   * to allow only provided values
    //   * to collect multiple options with the same name if collect is enabled
    //   * and to map the value to any other value.
    value(value: string, previous: Array<string>): Array<string> | undefined {
      // allow only foo, bar and baz as value
      if (["foo", "bar", "baz"].includes(value)) {
        // Collect and return current and previous values.
        return [...previous, value];
      }
      // if no value is returned, a default validation error will be thrown.
      // For a more detailed error message you can throw a custom ValidationError.
      throw new Error(
        `Option "--value" must be one of "foo", "bar" or "baz", but got "${value}".`,
      );
    },
  }],
});

console.log(result);
$ deno run https://deno.land/x/cliffy/examples/flags/value.ts --value fooo
error: Uncaught Error: Option "--value" must be one of "foo", "bar" or "baz", but got "fooo".

❯ Contributing

Any kind of contribution is welcome! Please take a look at the contributing guidelines.

❯ License

MIT