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-express-modular

v3.3.10

Published

Scaffold a modular, domain-driven Express + TypeScript backend. Choose your database (Mongoose, Prisma, or Drizzle) and validator (Zod or Joi). Optionally add JWT auth and Docker setup.

Readme

create-express-modular

npm version License: MIT Node.js TypeScript

Scaffold a production-ready Express + TypeScript backend in seconds.
Choose your database, your validator, and optionally add JWT auth — all from one interactive CLI.

📖 Full Documentation →

If you find this tool helpful, consider leaving a ⭐ star on GitHub to support the project!


Installation (Recommended)

Install the CLI globally to access the cem executable across your workspace:

# Using npm (recommended)
npm install -g create-express-modular

Quick Start

Scaffold a new project using the cem CLI (recommended):

# Using globally installed CLI (recommended)
cem my-api

# Or using npx / bunx without global installation
npx create-express-modular my-api
# or
bunx create-express-modular my-api

Then start developing:

cd my-api
cem dev

Your server is live at http://localhost:5000. ✅


What Gets Generated

Answer 5 prompts — get a complete, wired-up backend:

| Prompt | Options | | :----------------- | :-------------------------------------------------- | | Database / ORM | Mongoose · Prisma · Drizzle | | Validator | Zod · Joi | | JWT Auth | Yes / No (bcrypt + refresh tokens + rate limiting) | | Token delivery | HTTP-only cookies · Authorization header | | Docker | Yes / No (Dockerfile + docker-compose + DB sidecar) |


🤖 AI Coding Assistants (Cursor & Claude Ready)

To support seamless development with AI assistants (Cursor, Claude Code, GitHub Copilot, etc.), the CLI automatically scaffolds custom configuration context files during project initialization:

  • AGENTS.md — Universal rules detailing code style, technology choices, strictly-enforced directory structure guidelines, and available CLI tools.
  • CLAUDE.md — Full project context for Claude with real boilerplates (Controllers, Services, Routes, schemas, and Models) specifically tailored to the scaffolded stack.

CLI Commands

🛠️ Project Management

| Command | Description | | :-------------- | :----------------------------------------------------- | | cem dev | Start the dev server with live reload | | cem build | Run guards + compile TypeScript to dist/ | | cem start | Start the production server with preflight checks | | cem check | Run type-check, lint, and format checks in one command | | cem list | Show a snapshot of modules, middlewares, and env vars |

➕ Generating Features

| Command | Description | | :--------------------------------- | :--------------------------------------------------------------- | | cem add module <Name...> | Scaffold one or more complete feature modules | | cem add middleware <name...> | Create one or more middleware files under src/app/middlewares/ | | cem add env <KEY...> | Add one or more env vars to .env, .env.example, and config |

❌ Removing Features

| Command | Description | | :------------------------------------ | :--------------------------------------------- | | cem remove module <Name...> | Delete module directory(ies) and unwire routes | | cem remove middleware <name...> | Delete one or more custom middleware files | | cem remove env <KEY...> | Remove env var(s) from all configurations |

💡 Command Shortcuts / Aliases:

  • cem rm is an alias for cem remove
  • cem ls is an alias for cem list

Requirements

  • Node.js: >= 18
  • Package Manager: npm >= 9 · yarn >= 1.22 · pnpm >= 8

Resources

| Link | Description | | :------------------------------------------------------------------ | :------------------------------------------- | | 📖 Full Docs | Complete CLI reference, guides, and examples | | DOCS.md | Offline version of the full documentation | | ARCHITECTURE.md | Internal project architecture overview | | npm | Package page |


License

MIT