Skip to main content
Module

x/cliffy/mod.ts>parseFlags

Command line framework for deno 🦕 Including Commandline-Interfaces, Prompts, CLI-Table, Arguments Parser and more...
Extremely Popular
Go to Latest
function parseFlags
Re-export
import { parseFlags } from "https://deno.land/x/cliffy@v0.24.2/mod.ts";

Parse command line arguments.

Type Parameters

optional
O extends Record<string, any> = Record<string, any>
optional
T extends IFlagOptions = IFlagOptions

Parameters

args: string[]

Command line arguments e.g: Deno.args

optional
opts: IParseOptions<T> = [UNSUPPORTED]

Parse options.

// example.ts -x 3 -y.z -n5 -abc --beep=boop foo bar baz --deno.land -- --cliffy
parseFlags(Deno.args);
{
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" ]
}