Skip to content

Templates

Every template is a production-grade starter with Biome linting & formatting, TypeScript strict mode, GitHub Actions CI, and VS Code settings pre-configured.

IDnext-chakra
StackNext.js 16, Chakra UI v3, TypeScript
Reponextarter-chakra

Features: Next.js 16, Chakra UI v3, Biome, Turborepo, TypeScript, Playwright

Terminal window
pnpm create xtarter-app my-app --template next-chakra

IDnext-tailwind
StackNext.js 16, Tailwind CSS v4, TypeScript
Reponextarter-tailwind

Features: Next.js 16, Tailwind CSS v4, Biome, TypeScript, Playwright

Terminal window
pnpm create xtarter-app my-app --template next-tailwind

IDvite-chakra
StackVite 7, React 19, Chakra UI v3, TanStack Router
Repovite-react-chakra-starter

Features: Vite 7, React 19, Chakra UI v3, TanStack Router, TanStack Query, Biome, Vitest

Terminal window
pnpm create xtarter-app my-app --template vite-chakra

IDvite-tailwind
StackVite 7, React 19, Tailwind CSS v4, TanStack Router
Repovite-react-tailwind-starter

Features: Vite 7, React 19, Tailwind CSS v4, TanStack Router, TanStack Query, Biome, Vitest

Terminal window
pnpm create xtarter-app my-app --template vite-tailwind

IDvite-hero
StackVite 7, React 19, Hero UI
Repovite-react-hero-starter

Features: Vite 7, React 19, Hero UI, TanStack Router, Biome, Vitest

Terminal window
pnpm create xtarter-app my-app --template vite-hero

Every template follows a consistent layout:

my-app/
├── src/ # Application source
├── public/ # Static assets
├── biome.json # Biome linting + formatting config
├── tsconfig.json # TypeScript strict mode
├── package.json # Dependencies and scripts
├── .vscode/ # Editor settings + extensions
├── .github/workflows/ # CI/CD workflows
└── .agents/ # AI agent skills

For programmatic usage, the TemplateConfig type:

interface TemplateConfig {
id: string // Unique identifier (e.g. "vite-tailwind")
name: string // Human-readable name
description: string // One-line description
repo: string // GitHub owner/repo
branch: string // Git branch (always "main")
provider: "github" // Download provider
path?: string // Optional subdirectory within repo
}