mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-24 13:15:45 +00:00
37 lines
706 B
Plaintext
37 lines
706 B
Plaintext
---
|
|
title: CLI
|
|
description: Use the CLI to add components to your project.
|
|
---
|
|
|
|
## init
|
|
|
|
Use the `init` command to initialize dependencies for a new project.
|
|
|
|
The `init` command installs dependencies, adds the `cn` util, configures `tailwind.config.js`, and CSS variables for the project.
|
|
|
|
```bash
|
|
npx shadcn-ui init
|
|
```
|
|
|
|
## add
|
|
|
|
Use the `add` command to add components to your project.
|
|
|
|
The `add` command adds a component to your project and installs all required dependencies.
|
|
|
|
```bash
|
|
npx shadcn-ui add [component]
|
|
```
|
|
|
|
### Example
|
|
|
|
```bash
|
|
npx shadcn-ui add alert-dialog
|
|
```
|
|
|
|
You can also run the command without any arguments to view a list of all available components:
|
|
|
|
```bash
|
|
npx shadcn-ui add
|
|
```
|