Skip to main content

Starwind UI v1.3.1 is now available! Get started

Command Line Interface

Use the CLI to initialize, add, update, and remove components with ease.

init

Use the init command to initialize project configuration, the starwind.config.json file, and install dependencies.

You’ll be asked a few questions to configure your project.

Terminal window
Welcome to the Starwind CLI
What is your components directory?
src/components
Where would you like to add the Tailwind .css file?
src/styles/starwind.css
What Tailwind base color would you like to use?
Neutral (default)
Select your preferred package manager
pnpm
Install tailwindcss@latest, @tailwindcss/vite@latest, @tailwindcss/forms@latest, tailwindcss-animate@latest, @tabler/icons@latest using pnpm?
Yes
Packages installed successfully
Created project structure
Astro config setup completed
Created Tailwind configuration
Updated project starwind configuration
Next steps ─────────────────────────────────────────────────────╮
Make sure your layout imports the src/styles/starwind.css file
├──────────────────────────────────────────────────────────────────╯
Enjoy using Starwind UI 🚀

init options

Terminal window
Usage: starwind init [options]
Initialize your project with Starwind
Options:
-d, --defaults Use default values for all prompts
-h, --help display help for command

add

Use the add command to add components to your project.

If you don’t specify any components, you will get a list of all available components to choose from.

Terminal window
Welcome to the Starwind CLI
Select components to add
accordion
alert
badge
button
card
checkbox
dialog
input
label
select
...

add options

Terminal window
Usage: starwind add [options] [components...]
Add Starwind components to your project
Arguments:
components The components to add (space separated)
Options:
-a, --all Add all available components
-h, --help display help for command

update

Use the update command to update components in your project.

Caution

This will overwrite any local changes to the component.

If you don’t specify any components, you will get a list of all available components to choose from.

Terminal window
Welcome to the Starwind CLI
Select components to update
accordion
alert
badge
button
card
checkbox
dialog
input
label
select
...

update options

Terminal window
Usage: starwind update [options] [components...]
Update Starwind components to their latest versions
Arguments:
components The components to update (space separated)
Options:
-a, --all Update all installed components
-h, --help display help for command

remove

Use the remove command to remove components from your project.

If you don’t specify any components, you will get a list of all available components to choose from.

Terminal window
Welcome to the Starwind CLI
Select components to remove
accordion
alert
badge
button
card
checkbox
dialog
input
label
select
...

remove options

Terminal window
Usage: starwind remove [options] [components...]
Remove Starwind components from your project
Arguments:
components The components to remove (space separated)
Options:
-a, --all Remove all installed components
-h, --help display help for command