Installation
How to install and configure Bklit UI in your project
Bklit UI is a trusted registry for shadcn/ui. Follow the steps below to get started.
Prerequisites
Before installing Bklit UI components, make sure you have shadcn/ui set up in your project. If you haven't already, run:
npx shadcn@latest initRegistry namespace
Bklit is published on the shadcn registry index as @bklit. Add it to your components.json if it is not already configured:
{
"registries": {
"@bklit": "https://ui.bklit.com/r/{name}.json",
"@ncdai": "https://chanhdai.com/r/{name}.json"
}
}Then install components with the namespace, for example npx shadcn@latest add @bklit/area-chart.
Line chart loading labels use @ncdai/shimmering-text. Installing @bklit/line-chart pulls it in automatically when @ncdai is configured.
Install Components
Install any Bklit UI component using the CLI:
pnpm dlx shadcn@latest add @bklit/area-chartThe @bklit namespace is configured automatically for new projects — no manual setup needed. This will:
- Download the component source code
- Install any required dependencies
- Place files in your configured component directory
Next Steps
You're all set! Browse the Components section to start adding charts and visualizations to your project.