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 history

Flags

FlagDefaultDescription
--limit10Number of history entries to show.
--clearfalseClear all saved scaffold history.
--jsonfalsePrint history as JSON for scripts.

Examples

Show the five most recent entries:

npx create-better-fullstack@latest history --limit 5

Export history as JSON:

npx create-better-fullstack@latest history --json

Clear local history:

npx create-better-fullstack@latest history --clear

Reproducible Workflow

Use history when you want to recreate a stack, compare generated output, or share a known-good scaffold command with another developer.

  1. Run history.
  2. Copy the reproducible command for the stack you want.
  3. 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.