create-cascade
v0.1.14
Published
Create a new Cascade TUI project
Readme
Create Cascade App
A CLI tool to create Cascade projects with interactive framework and starter selection.
Quick Start
bun create cascadeFeatures
- Create in a new folder or directly in the current folder
- Interactive framework selection (
core,react,solid) - Multiple built-in starter code presets per framework
- Scaffold only by default (no install, no auto-run)
Frameworks
core: Vanilla Cascade APIreact: Cascade + React renderersolid: Cascade + Solid renderer
Starter Presets
Core
minimalcounterlayout
React
minimalcounterlogin
Solid
minimalcounterinput
CLI Options
Options:
-f, --framework <name> Framework: core, react, solid
-s, --starter <name> Starter preset for selected framework
--here Use current directory
--install Run bun install after scaffolding
--start Run bun install, then bun run dev
-h, --help Show helpExamples
# Interactive mode
bun create cascade
# Create in current folder
bun create cascade --here
# Create React app with counter starter
bun create cascade my-app -f react -s counter
# Scaffold then install
bun create cascade my-app --installBehavior
- By default, the CLI only scaffolds files.
- With
--install, it runsbun installin the target directory. - With
--start, it runsbun installthenbun run dev.
Package
Published on npm as create-cascade.
