This release is versions behind 1.0.29 — the latest version of @std/cli.
Built and signed on GitHub ActionsBuilt and signed on GitHub Actions
Built and signed on GitHub Actions
Works with
•JSR Score94%•This package works with DenoIt is unknown whether this package works with Bun

Downloads13,956/wk
•Published2 years ago (0.224.3)
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
Add Package
deno add jsr:@std/cli
Import symbol
import * as cli from "@std/cli";
Import directly with a jsr specifier
import * as cli from "jsr:@std/cli";