Getting Started with create-xtarter-app
create-xtarter-app scaffolds a new project from a curated template, installs its dependencies, and can initialize Git.
Quick start
Section titled “Quick start”npm create xtarter-app@latestpnpm create xtarter-app@latestyarn create xtarter-appbun create xtarter-app@latestThe CLI prompts for a project name, template, package manager, Git init, and CI/CD cleanup. Use --yes / -y to accept the defaults (pnpm, next-chakra, Git init, no cleanup); the project name prompt still appears unless you pass a positional name. Explicit flags such as --pm bun or --clean take priority.
npm create xtarter-app@latest -- my-app --yespnpm create xtarter-app@latest my-app --yesyarn create xtarter-app my-app --yesbun create xtarter-app@latest my-app --yesnpm create xtarter-app@latest -- my-app -t vite-tailwindpnpm create xtarter-app@latest my-app -t vite-tailwindyarn create xtarter-app my-app -t vite-tailwindbun create xtarter-app@latest my-app -t vite-tailwindNext steps
Section titled “Next steps”- Usage guide - Walk through each prompt
- CLI reference - Commands, arguments, and flags
- Template catalog - Every template
- Keep in sync - Maintain configs after scaffolding