Skip to main content
Module

x/cliffy/examples/command/examples.ts

Command line framework for deno 🦕 Including Commandline-Interfaces, Prompts, CLI-Table, Arguments Parser and more...
Extremely Popular
Go to Latest
File
#!/usr/bin/env -S deno run
import { red } from "https://deno.land/std@0.99.0/fmt/colors.ts";import { Command } from "../../command/command.ts";
await new Command() .name("examples") .example( "example name", `Description ...\n\nCan have mutliple lines and ${red("colors")}.`, ) .parse(Deno.args);