v0.1.6
Open Source • MIT

Build Faster with
Well-Ready CLI

Instant project scaffolding for modern web stacks — Next.js, MERN, Vite, Express.

Documentation

First Time Using npx well-ready?

well-ready is a CLI that generates fully-structured, production-ready starter templates for your project. Skip the boilerplate setup and start building instantly.

Requirements

  • Node.js v18+ (recommended v20+)
  • npm or yarn installed

How to Use

Run this command anywhere:

Select your preferred stack → enter project name → your full boilerplate is generated automatically. Jump in and start coding.

What Happens Next?

  • A complete project folder is created
  • All dependencies are automatically installed
  • Best-practice project structure + config files included
  • Your own env variables setup is needed
  • Start development:
    npm run dev

Some of the Available Stacks

Hover cards to reveal project structure

Next.js + Prisma

Full-stack Next.js App Router with Prisma ORM and Tailwind CSS v4.

Project Structure
nextjs-prisma/
├── app/
├── prisma/schema.prisma
├── next.config.ts
└── package.json

MERN Stack (TS)

Production-ready MERN stack with TypeScript, Tailwind v4, and JWT auth.

Project Structure
mern-ts/
├── client/src/
├── server/src/
├── tsconfig.json
└── .env

Vite + React (TS)

Blazing fast Vite + React setup with TypeScript and Tailwind v4.

Project Structure
react-vite-ts/
├── src/
├── vite.config.ts
├── tailwind.config.js
└── package.json

Express API (TS)

Robust Express.js backend with TypeScript, MongoDB, and security best practices.

Project Structure
express-ts/
├── src/
│ ├── controllers/
│ ├── models/
│ └── routes/
└── package.json