import { Command } from "https://deno.land/x/cliffy@v0.19.0/command/command.ts";
Type Parameters
Properties
Methods
Get help handler method.
Get help handler method.
Register default options like --version
and --help
.
Handle error. If throwErrors
is enabled the error will be returned,
otherwise a formatted error message will be printed and Deno.exit(1)
will be called.
Execute command.
Execute external sub-command.
Parse command-line arguments.
Parse raw command line arguments.
Check whether the command should throw errors or exit.
Validate environment variables.
Add new command alias.
Don't throw an error if the command was called without arguments.
Set command arguments:
requiredArg:string [optionalArg: number] [...restArgs:string]
Add new sub-command.
Add new sub-command.
Register command specific custom type.
Set default command. The default command is executed when the program was called without any argument and if no action handler is registered.
Set the long command description.
Add new environment variable.
Add new command example.
Make command executable.
Get command name aliases.
Get arguments definition. E.g: input-file:string output-file:string
Get argument by name.
Get arguments.
Get base command by name or alias.
Get base commands.
Get base completion by name.
Get base completions.
Get base environment variable by name.
Get base environment variables.
Get base option by name.
Get base options.
Get base type by name.
Get base types.
Get command by name or alias.
Get commands.
Get completion by name.
Get completions.
Get command description.
Get environment variables.
Get example with given name.
Get all examples.
Get global command by name or alias.
Get global commands.
Get global completions by name.
Get global completions.
Get global environment variable by name.
Get global environment variables.
Get global option from parent command's by name.
Get global options.
Get parent command from global executed command. Be sure, to call this method only inside an action handler. Unless this or any child command was executed, this method returns always undefined.
Get global type by name.
Get global types.
Get generated help.
Get all arguments defined after the double dash.
Get main command.
Get command name.
Get options.
Get full command path.
Get original command-line arguments.
Get short command description. This is the first line of the description.
Get command version.
Make command globally available.
Check if command has arguments.
Checks whether a child command exists by given name or alias.
Checks whether the command has sub-commands or not.
Checks whether the command has an environment variable with given name or not.
Checks whether the command has environment variables or not.
Checks whether the command has an example with given name or not.
Checks whether the command has examples or not.
Checks whether the command has an option with given name or not.
Checks whether the command has options or not.
Set command help.
Disable help option.
Set global help option.
Set help option.
Set command name.
Add a new option.
Parse command line arguments and execute matched command.
Remove sub-command by name or alias.
Remove option by name.
Set internal command pointer to child command with given name.
Output generated help without exiting.
Output generated help without exiting.
Enable stop early. If enabled, all arguments starting from the first non option argument will be passed as arguments with type string to the command action handler.
For example:
command --debug-level warning server --port 80
Will result in:
- options: {debugLevel: 'warning'}
- args: ['server', '--port', '80']
Throw validation error's instead of calling Deno.exit()
to handle
validation error's manually.
A validation error is thrown when the command is wrongly used by the user. For example: If the user passes some invalid options or arguments to the command.
This has no effect for parent commands. Only for the command on which this method was called and all child commands.
Example:
try {
cmd.parse();
} catch(error) {
if (error instanceof ValidationError) {
cmd.showHelp();
Deno.exit(1);
}
throw error;
}
Register custom type.
Disable parsing arguments. If enabled the raw arguments will be passed to the action handler. This has no effect for parent or child commands. Only for the command on which this method was called.
Set command version.
Disable version option.
Set global version option.
Set version option.