npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

create-ready-stack

v0.4.0

Published

Scaffold a production-ready monorepo with your proven stack: Hono 4 + Drizzle ORM + React 19 + TanStack Query 5 + TGWrapper bot

Readme

create-ready-stack

npm version npm downloads CI License TypeScript ![Biome](https://img.shields.io/badge/ lint-Biome-60a5fa)

Scaffold a production-ready full-stack project in under a minute.

Your proven stack, automated:

  • Backend: Hono 4 or Express 5 + Drizzle ORM or Prisma + Zod
  • Frontend: React 19 + Vite 8 + TanStack Query 5 + Tailwind CSS v4 (optional)
  • Bot (optional): @tgwrapper/core Telegram bot framework
  • UI (optional): @ui-construction-library design system
  • Infrastructure: Docker Compose, GitHub Actions CI, Dependabot

Comparison

| Feature | create-ready-stack | create-t3-app | create-next-app | create-vite | |---------|:-:|:-:|:-:|:-:| | Full-stack (backend + frontend) | ✅ | ✅ | ❌ | ❌ | | Hono 4 support | ✅ | ❌ | ❌ | ❌ | | Drizzle ORM + Prisma choice | ✅ | ✅ (Drizzle only) | ❌ | ❌ | | React 19 + Vite 8 | ✅ | ❌ | ❌ | ✅ | | TanStack Query 5 | ✅ | ❌ | ❌ | ❌ | | Telegram bot option | ✅ | ❌ | ❌ | ❌ | | Tailwind CSS v4 | ✅ | ❌ | ✅ | ✅ | | Docker Compose | ✅ | ❌ | ❌ | ❌ | | CI workflow with PostgreSQL | ✅ | ❌ | ❌ | ❌ | | 6-level methodology docs | ✅ | ❌ | ❌ | ❌ | | Sentry integration | ✅ | ❌ | ❌ | ❌ | | Multi-user auth scaffold | ✅ | ✅ | ❌ | ❌ |

Quick Start

npx create-ready-stack init

Or install globally:

pnpm add --global create-ready-stack
create-ready-stack init

What you get

<project-name>/
├── backend/             # Hono 4 or Express 5 API server
│   ├── src/
│   │   ├── index.ts     # Server entry + health check
│   │   ├── auth.ts      # JWT auth (if multi-user)
│   │   ├── db/
│   │   │   ├── index.ts # DB client
│   │   │   └── schema/  # Drizzle or Prisma schema
│   │   └── app.test.ts  # Working health check test
│   ├── package.json
│   ├── Dockerfile
│   └── tsconfig.json
├── web/                 # React 19 + Vite 8 SPA
│   ├── src/
│   │   ├── main.tsx     # Entry with QueryClient + Router
│   │   ├── App.tsx      # Routes + Home/Dashboard
│   │   ├── App.test.tsx # 3 working tests
│   │   ├── api.ts       # Typed fetch wrapper
│   │   └── index.css    # Tailwind (if enabled)
│   ├── package.json
│   ├── Dockerfile
│   ├── .dockerignore
│   └── vite.config.ts   # Proxy + Tailwind plugin
├── bot/                 # @tgwrapper/core bot (optional)
│   ├── src/index.ts
│   └── Dockerfile
├── docs/                # 6-level methodology docs
│   ├── LEVELS.md
│   ├── 01-idea/         # Brief + DoD
│   ├── 02-arch/         # Domains + Flows
│   ├── 03-impl/         # Commands + DoD
│   ├── 04-quality/      # Quality checklists
│   ├── 05-release/      # Release flow
│   └── 06-deploy/       # Deploy guides
├── docker-compose.yml   # With health checks
├── .github/
│   ├── workflows/ci.yml # CI with PostgreSQL
│   └── dependabot.yml   # Weekly updates
├── biome.json           # Lint + format config
├── tsconfig.base.json   # Shared strict config
├── turbo.json           # Turborepo pipeline
├── .env.example
├── .gitignore
├── .dockerignore
├── CHANGELOG.md
└── README.md

Prompt Options

| Option | Description | Default | |--------|-------------|---------| | Project name | Slug (e.g. my-project) | — | | Project title | Display name | — | | Format | web or web+bot | web | | Multi-user | JWT auth + bcrypt + jose | false | | Docker | Docker Compose with health checks | true | | Backend | Hono 4 or Express 5 | Hono 4 | | ORM | Drizzle ORM or Prisma | Drizzle ORM | | Tailwind CSS | Tailwind CSS v4 + Vite plugin | true | | UI Library | @ui-construction-library | true | | Sentry | Error tracking (backend + frontend) | false |

Generated Stack

| Layer | Technology | |-------|-----------| | Backend | Hono 4 / Express 5 | | ORM | Drizzle ORM / Prisma | | Database | PostgreSQL 16 | | Frontend | React 19 + Vite 8 | | Client state | TanStack React Query 5 | | Routing | react-router-dom 7 | | CSS | Tailwind CSS v4 (optional) | | Bot | @tgwrapper/core (optional) | | UI | @ui-construction-library (optional) | | Auth | bcryptjs + jose (JWT) | | Lint/Format | Biome 2 | | Tests | Vitest + Testing Library | | CI | GitHub Actions + PostgreSQL | | Docker | Docker Compose + health checks |

Commands

| Command | Description | |---------|-------------| | create-ready-stack init | Start interactive scaffolding | | create-ready-stack init --force | Overwrite existing directory | | create-ready-stack --help | Show help with examples | | create-ready-stack --version | Show version |

Projects using this stack

  • RepoRadar — Multi-provider engineering dashboard
  • C&TLab — Coffee shop POS platform

License

MIT — see LICENSE