History Command
View, clear, and export reproducible commands from previous Better Fullstack scaffolds.
Open documentation actions
The history command shows recent scaffolded projects and the reproducible commands that created them.
npx 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 create-better-fullstack@latest history --limit 5Export history as JSON:
npx create-better-fullstack@latest history --jsonClear local history:
npx create-better-fullstack@latest history --clearReproducible Workflow
Use history when you want to recreate a stack, compare generated output, or share a known-good scaffold command with another developer.
- 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.