Getting Started

Install and scaffold your first project in under a minute.

Requirements

  • Node.js 18+ (Node 20 or 22 recommended)
  • One of npm, pnpm, or bun

Create a project

Run the CLI

No install needed — run it directly with your package manager.

npx @vipinyadav02/createjsstack@latest my-app

Pick your stack

Answer the prompts, or skip them entirely with a preset and --yes:

npx @vipinyadav02/createjsstack@latest my-app --preset mern --yes

Install & run

cd my-app
npm install
npm run dev

Non-interactive mode

Pass any combination of flags with --yes to skip all prompts — perfect for CI or scripts. See CLI Options.

Custom stack example

npx @vipinyadav02/createjsstack@latest my-app \
  --frontend next \
  --backend hono \
  --database postgres \
  --orm drizzle \
  --package-manager pnpm \
  --yes