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

@michealadekunle/backend-forge

v1.2.5

Published

A CLI tool for generating backend systems

Readme

Backend Forge

Production-grade backend scaffolding and architecture automation CLI for modern Node.js systems.


Features

  • Interactive backend project generation
  • MongoDB support
  • Redis support
  • BullMQ support
  • Socket.IO support
  • JWT authentication scaffolding
  • Docker support
  • Modular backend resource generation
  • Optional CRUD module generation
  • Automatic route registration
  • Dynamic environment generation
  • Smart feature dependency resolution
  • Backend Forge project validation
  • Architecture-aware backend wiring
  • Optional architecture presets

Installation

Install globally:

npm install -g @michealadekunle/backend-forge

Or use directly with npx:

npx @michealadekunle/backend-forge create

Commands

Create Project

backend-forge create

Generate Module

backend-forge generate module users

Generate CRUD Module

backend-forge generate module products --crud

Presets

Backend Forge supports optional architecture presets.

Realtime System

backend-forge create --preset realtime

Includes:

  • MongoDB
  • Redis
  • Socket.IO
  • JWT Authentication
  • Docker

Fintech API

backend-forge create --preset fintech

Includes:

  • MongoDB
  • Redis
  • BullMQ
  • JWT Authentication
  • Docker

Minimal API

backend-forge create --preset minimal

Includes:

  • Base Express + TypeScript architecture only

Quick Example

Create Project

backend-forge create

Generate Module

backend-forge generate module users

Generated automatically:

src/modules/users/
├── users.controller.ts
├── users.service.ts
├── users.routes.ts
├── users.types.ts
└── users.validator.ts

Routes are automatically registered in:

src/routes/index.ts

CRUD Example

backend-forge generate module products --crud

Generated endpoints:

GET    /products
GET    /products/:id
POST   /products
PATCH  /products/:id
DELETE /products/:id

Generated Features

Backend Forge can generate:

  • MongoDB architecture
  • Redis configuration
  • BullMQ queues/workers
  • Socket.IO setup
  • JWT middleware
  • Docker setup
  • Modular backend resources
  • CRUD-ready controllers and routes

Example Workflow

backend-forge create --preset fintech

cd my-project

npm install

backend-forge generate module payments --crud

npm run dev

Roadmap

  • Swagger/OpenAPI generation
  • Prisma/PostgreSQL support
  • Authentication presets
  • Microservice architecture templates
  • Plugin ecosystem
  • Testing generators
  • CI/CD scaffolding

License

MIT