close
Skip to main content
This release is versions behind 1.0.29 — the latest version of @std/cli.

@std/cli@0.224.0
Built and signed on GitHub Actions

Works with
This package works with DenoIt is unknown whether this package works with Bun
This package works with Deno
It is unknown whether this package works with Bun
JSR Score94%
Downloads14,554/wk
Published2 years ago (0.224.0)

Tools for creating interactive command line tools

Tools for creating interactive command line tools.

// $ deno run example.ts --foo --bar=baz ./quux.txt
import { parseArgs } from "@std/cli/parse-args";

const parsedArgs = parseArgs(Deno.args);
parsedArgs; // { foo: true, bar: "baz", _: ["./quux.txt"] }
Built and signed on
GitHub Actions

Report package

Please provide a reason for reporting this package. We will review your report and take appropriate action.

Please review the JSR usage policy before submitting a report.

Add Package

deno add jsr:@std/cli

Import symbol

import * as cli from "@std/cli";
or

Import directly with a jsr specifier

import * as cli from "jsr:@std/cli";