Skip to main content

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

Tools for creating interactive command line tools

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 Score
94%
Published
3 days ago (1.0.10)

Tools for creating interactive command line tools.

import { parseArgs } from "@std/cli/parse-args";
import { assertEquals } from "@std/assert";

// Same as running `deno run example.ts --foo --bar=baz ./quux.txt`
const args = parseArgs(["--foo", "--bar=baz", "./quux.txt"]);
assertEquals(args, { foo: true, bar: "baz", _: ["./quux.txt"] });
Built and signed on
GitHub Actions
View transparency log

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";

Add Package

bunx jsr add @std/cli

Import symbol

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