nachui
v1.0.6
Published
Official CLI for NachUI
Readme
NachUI CLI
[English] | Español
The official Command Line Interface for the NachUI ecosystem. Designed to help you seamlessly integrate, manage, and update high-fidelity React primitives directly into your codebase.
Tech Stack
- CLI Framework: Commander
- Interactive Prompts: @clack/prompts
- Console Styling: Kleur
- Data Validation: Zod
Key Features
1. Radically Simple Integration
Initialize NachUI in your workspace, configure your environment, and add beautifully crafted React components directly to your source files. You own the code.
2. Streamlined Workflow
Manage your complete component lifecycle from the terminal: list available primitives, add new ones, seamlessly update existing ones, or remove those you no longer need.
3. Developer Experience First
Built with gorgeous interactive prompts, helpful validation, and intuitive commands that respect your time.
Usage
You can run the CLI directly via npx (or your package manager of choice) without installing it globally.
# Initialize NachUI in your project
npx nachui init
# Add a specific component
npx nachui add button
# List all available components
npx nachui list
# Update an installed component
npx nachui update button
# Remove an installed component
npx nachui remove buttonArchitecture
src/commands: Contains all CLI action logic (init,add,list,update,remove).src/index.ts: The main entry point parsing terminal instructions viacommander.
