Docs / CLI
Open documentation actions
History Command
View, clear, and export reproducible commands from previous Better Fullstack scaffolds.
The history command shows recent scaffolded projects and the reproducible commands that created them. Use it when you want to recreate a stack, compare generated output, or share a known-good command.
npx -y create-better-fullstack@latest historyFlags
| Flag | Default | Description |
|---|---|---|
--limit | 10 | Number of history entries to show. |
--clear | false | Clear all saved scaffold history. |
--json | false | Print history as JSON for scripts. |
Examples
Show the five most recent entries:
npx -y create-better-fullstack@latest history --limit 5Export history as JSON:
npx -y create-better-fullstack@latest history --jsonClear local history:
npx -y create-better-fullstack@latest history --clearReproducible workflow
- Run
history. - Copy the reproducible command for the stack you want.
- Re-run it with a new project name or adjusted flags.
History is stored locally under your user directory and does not affect generated project files.