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 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 -y create-better-fullstack@latest history --limit 5

Export history as JSON:

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

Clear local history:

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

Reproducible workflow

  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.