Template Docs
Create and run a ScreenUI template project in minutes.
Template CLI
Step-by-step guide to scaffold and run a ScreenUI template project.
Setup Guide
Follow these steps to get your project running locally.
1
List Available Templates
View all available templates before creating a project.
npx screenui-cli@latest list2
Create Project
Run the CLI command to scaffold a new project.
npx screenui-cli@latest create layout3
Confirm Project Name
Accept the default or enter a custom name.
? Project name: › layout
✔ Project name: … my-app4
Install Dependencies
Allow the CLI to install dependencies.
? Install dependencies now? › Yes5
Verify Setup
Ensure installation completed successfully.
Dependencies installed successfully
Next:
cd my-app
npm run dev6
Start Dev Server
Run the project locally.
cd my-app
npm run devSuccess
Your project is now running at http://localhost:3000