Command System in Kawkab
The command system in the Kawkab framework provides a powerful and flexible command-line interface to manage and execute various tasks in your application. You can use the built-in commands or create custom ones.
Viewing Available Commands
To get a list of all available commands, run:
npm run kawkab
This command will display a list of all available commands with a brief description of each one.
Creating a New Command
Basic Syntax
npm run kawkab command:make <name> [module]
Parameter Details:
<name>
: The name of the command you wish to create.[module]
: The name of the module that will contain the command (optional, the default ismain
).
Example:
npm run kawkab command:make hello
This command will create a new command file at the appropriate location with the following basic structure:
import { Command } from "kawkab";
export default function(program: Command): void {
program
// Command syntax: '<variable_name>' is required, '[variable_name]' is optional
.command("hello <name> [module]")
// Description of the command that will appear in the CLI help
.description("Your custom command description")
// Action to be executed when the command is run
.action(async (name: string, module: string = "main") => {
// Write your command logic here
console.log(`Hello ${name}`);
});
}
Command Structure
Core Components
-
command()
: Defines the name and syntax of the command- Required variables are written between
<>
- Optional variables are written between
[]
- Required variables are written between
-
description()
: A brief description of the command that appears in the help list -
action()
: The function containing the logic for executing the command- It receives the variables defined in the command syntax
- It can be asynchronous (
async
)
Adding Options
You can add options to your command using option()
:
program
.command("hello <name>")
.option("-c, --capitalize", "Convert the name to uppercase")
.action(async (name: string, options) => {
const output = options.capitalize ? name.toUpperCase() : name;
console.log(`Hello ${output}`);
});
Best Practices
- Clear Names: Use descriptive and clear names for your commands.
- Good Documentation: Write a clear and detailed description for each command and its options.
- Input Validation: Always validate inputs before executing the command.
- Clear Messages: Display clear messages to the user about the result of the command execution.
- Error Handling: Implement proper error handling for potential issues.
Conclusion
The command system in Kawkab provides an easy and flexible way to add new functionality to your application through the command-line interface. With support for required and optional variables and custom options, you can create powerful and useful commands for your application.