Getting Started

Installation

Install ds-start globally or run directly with npx.

No installation required. Run directly:

npx ds-start init my-app

Global Install

Install globally for repeated use:

npm install -g ds-start

Then run without npx:

ds-start init my-app

Requirements

  • Node.js 18 or later
  • Bun (recommended) or npm for package management

After Scaffolding

cd my-app
bun run env:check    # Validate environment
bun run dev          # Start dev server
bun run build        # Production build
bun run typecheck    # Verify types
bun run lint         # Lint code

On this page