The easiest way to get started with OpenTUI is by using create-tui. This CLI tool enables you to quickly start building a new OpenTUI application, with everything set up for you.
146
stars
120
commits
TypeScript
primary language
Sep 8, 2026
updated
A CLI tool for creating OpenTUI projects from templates, organized as a Bun workspace monorepo.
# Use with bun (no installation required)
bun create tui my-tui-project
Simple names for the official templates:
| Alias | Description |
|---|---|
core | Basic OpenTUI project |
react | OpenTUI project with React integration |
solid | OpenTUI project with Solid.js integration |
The CLI supports three formats for specifying templates:
# 1. Aliases (built-in templates)
bun create tui -t react my-project
# 2. Shorthand (owner/repo or owner/repo/path)
bun create tui -t username/my-template my-project
bun create tui -t username/repo/path/to/template my-project
# 3. Full GitHub URL (with optional branch/path)
bun create tui -t https://github.com/user/repo my-project
bun create tui -t https://github.com/user/repo/tree/main/templates/starter my-project
Custom templates must have a package.json at the template root.
Options:
-t, --template <template> Template: alias (core, react, solid), shorthand (owner/repo), or GitHub URL
--no-git Skip initializing a git repository
--no-install Skip installing dependencies
-v, --verbose Show detailed progress during template operations
-h, --help Show help documentation
--version Show the version of the application
# Interactive mode (prompts for all options)
bun create tui my-project
# Use an alias (built-in template)
bun create tui -t react my-project
# Use shorthand for a custom template
bun create tui -t username/my-template my-project
# Use a full GitHub URL with verbose output
bun create tui -t https://github.com/user/repo -v my-project
packages/
├── cli/ # CLI tool package (published to npm)
│ ├── src/ # CLI source code
│ ├── dist/ # Built output
│ └── package.json
└── templates/ # Templates package (not published)
├── react/ # React template
├── core/ # Core template
└── solid/ # Solid template
The CLI package is published to npm as create-tui. Templates are downloaded directly from this GitHub repository.
This CLI tool is largely inspired by and derived from the create-effect-app. I extend my gratitude to the Effect-TS team for their excellent work.
MIT
TypeScript
88.1%
Shell
11.9%
The easiest way to get started with OpenTUI is by using create-tui. This CLI tool enables you to quickly start building a new OpenTUI application, with everything set up for you.
146
stars
120
commits
TypeScript
primary language
Sep 8, 2026
updated
A CLI tool for creating OpenTUI projects from templates, organized as a Bun workspace monorepo.
# Use with bun (no installation required)
bun create tui my-tui-project
Simple names for the official templates:
| Alias | Description |
|---|---|
core | Basic OpenTUI project |
react | OpenTUI project with React integration |
solid | OpenTUI project with Solid.js integration |
The CLI supports three formats for specifying templates:
# 1. Aliases (built-in templates)
bun create tui -t react my-project
# 2. Shorthand (owner/repo or owner/repo/path)
bun create tui -t username/my-template my-project
bun create tui -t username/repo/path/to/template my-project
# 3. Full GitHub URL (with optional branch/path)
bun create tui -t https://github.com/user/repo my-project
bun create tui -t https://github.com/user/repo/tree/main/templates/starter my-project
Custom templates must have a package.json at the template root.
Options:
-t, --template <template> Template: alias (core, react, solid), shorthand (owner/repo), or GitHub URL
--no-git Skip initializing a git repository
--no-install Skip installing dependencies
-v, --verbose Show detailed progress during template operations
-h, --help Show help documentation
--version Show the version of the application
# Interactive mode (prompts for all options)
bun create tui my-project
# Use an alias (built-in template)
bun create tui -t react my-project
# Use shorthand for a custom template
bun create tui -t username/my-template my-project
# Use a full GitHub URL with verbose output
bun create tui -t https://github.com/user/repo -v my-project
packages/
├── cli/ # CLI tool package (published to npm)
│ ├── src/ # CLI source code
│ ├── dist/ # Built output
│ └── package.json
└── templates/ # Templates package (not published)
├── react/ # React template
├── core/ # Core template
└── solid/ # Solid template
The CLI package is published to npm as create-tui. Templates are downloaded directly from this GitHub repository.
This CLI tool is largely inspired by and derived from the create-effect-app. I extend my gratitude to the Effect-TS team for their excellent work.
MIT
TypeScript
88.1%
Shell
11.9%