import { Command } from "https://deno.land/x/lume@v1.18.4/deps/cliffy.ts";
Type Parameters
Properties
Methods
Get help handler method.
Get help handler method.
Register default options like --version
and --help
.
Execute command.
Execute external sub-command.
Parse command-line arguments.
Read and validate environment variables.
Parse raw command line arguments.
Parse argument type.
Check whether the command should exit after printing help or version.
Check whether the command should throw errors or exit.
Set command callback method.
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]
Check if new version is available and add hint to version.
Add new sub-command.
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 commands 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.
Returns command name, version and meta data.
Get main command.
Get command name.
Get options.
Get parent command.
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.
Enable grouping of options and set the name of the group.
All option which are added after calling the .group()
method will be
grouped in the help output. If the .group()
method can be use multiple
times to create more groups.
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 help option.
Set command name.
Same as .throwErrors()
but also prevents calling Deno.exit
after
printing help or version with the --help and --version option.
Disable inheriting global commands, options and environment variables from parent commands.
Add a new option.
Parse command line arguments and execute matched command.
Remove sub-command by name or alias.
Remove option by name.
Reset internal command reference to main command.
Set internal command pointer to child command with given name.
Output generated help without exiting.
Outputs command name, version and meta data.
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']
Handle error. If throwErrors
is enabled the error will be thrown,
otherwise a formatted error message will be printed and Deno.exit(1)
will be called. This will also trigger registered error handlers.
Throw validation errors instead of calling Deno.exit()
to handle
validation errors 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.
Set the command usage. Defaults to arguments.
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.
Set version option.