CLI
Learn how to use the AppykitUI CLI to quickly scaffold and manage components
Usage
The appykit
CLI helps you easily manage your UI components without manually copying code. Below are the available commands and how to use them.
Initialization
Use this command to initialize AppykitUI in your project.
npx appykit@latest init
Add components
Install a component from the AppykitUI library.
npx appykit@latest add <component-name>
Example
To add the Button
component, run:
npx appykit@latest add button
This will:
- Paste the component code
- Automatically install necessary dependencies
Remove components
To remove a component from your project, use the following command:
npx appykit@latest remove <component-name>
Example
To remove the Button
component, run:
npx appykit@latest remove button
This will:
- Remove the component code
- Clean up any related dependencies
Help
List all available commands and usage instructions.
npx appykit@latest --help
Need a specific feature or facing issues? Open an issue on GitHub Repo.