Skip to content

Astro

Terminal window
tinkerise web astro my-astro-site --tailwind
Terminal window
tinkerise web astro my-astro-site --no-git --no-install

Use astro when you want:

  • Content-focused sites with strong performance defaults
  • Island architecture for selective client-side interactivity
  • First-class Markdown and MDX workflows
  • Node.js >=18.17.1
  • npx available in your Node install
tinkerise flagNative create-astro flagNotes
--typescript(none)Astro uses strict TypeScript defaults
--tailwind--add tailwindcssAdds Tailwind integration during scaffold
--no-git--no-gitSkips git initialization
--no-install--no-installSkips dependency install
  • tinkerise delegates to create-astro.
  • Astro TypeScript mode is effectively always on in current versions.
  • Pass-through args are enabled.

Native pass-through example:

Terminal window
tinkerise web astro my-astro-site -- --template starlight

You get the official Astro project scaffold, including:

  • src/pages routes and content-ready project structure
  • Astro configuration and package scripts
  • Optional Tailwind integration when --tailwind is selected

See full CLI flags: /reference/commands/