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

@saulpaulus17/node-module-generator

v2.0.8

Published

CLI tool to grenerate modular scaffolding for nodejs projects following clean arsitecture principles.

Readme


🏛️ Architecture Overview

Node Module Generator (NMG) enforces Clean Architecture principles to ensure your backend remains scalable, testable, and decoupled. It is purpose-built for high-performance Express.js environments using Awilix for Dependency Injection.

Layered Structure

graph TD
    UI[Interfaces Layer: Controllers & Routes] --> APP[Application Layer: Use Cases & DTOs]
    APP --> DOM[Domain Layer: Entities & Repository Interfaces]
    INF[Infrastructure Layer: Repository Impl & External Services] --> DOM
    
    subgraph "Inner Layers"
    DOM
    APP
    end
    
    subgraph "Outer Layers"
    UI
    INF
    end

🔥 Key Features

  • 💎 Clean Architecture by Design: Strict separation into Domain, Application, Infrastructure, and Interface layers.
  • 💉 Native Dependency Injection: Fully pre-configured for Awilix, providing seamless DI management.
  • 🧪 Test-Ready Scaffolding: Automatically generates Jest test suites for Controllers and Use Cases.
  • 🚀 Modern Tooling: Native support for ES Modules (ESM), Prisma ORM, and Joi/Zod DTO patterns.
  • 🤖 Granular Control: Generate full modules or individual components (UseCases, Repos, DTOs) without disrupting existing code.

📦 Installation

Prerequisites

  • Node.js: v18.0.0 or higher (LTS recommended)
  • NPM, Yarn, or PNPM

Global Installation (Recommended)

Install NMG globally to access the command from any project.

npm install -g @saulpaulus17/node-module-generator

Direct Execution

Run it on-the-fly without a permanent installation:

npx @saulpaulus17/node-module-generator <command> <name>

🛠️ Target Project Dependencies

To ensure the modules generated by NMG function correctly, your main project must have the following core dependencies installed:

Production Dependencies

npm install express awilix @prisma/client

Development Dependencies

npm install --save-dev jest

[!TIP] These dependencies are essential because the generated code relies on Express for routing, Awilix for Dependency Injection, and Prisma for the data layer.


🚀 Detailed Usage

1. Generating a Full Module

Scaffolds a complete standard architecture with all 4 layers and initial unit tests.

nmg module Auth

2. Generating Individual Components

Quickly add specific components to an existing module structure.

# Add a new UseCase (e.g., login) to the Auth module
nmg usecase login --module=Auth

# Add a Repository Interface and Implementation (Prisma)
nmg repository User

# Add a DTO validation schema
nmg dto userRegistration --module=Auth

📂 Project Blueprint

Scaffolding a module (e.g., nmg module Product) produces the following industry-standard structure:

src/modules/Product/
├── application/                 
│   ├── dtos/                    # DTO schemas (e.g., product.dto.js)
│   └── usecases/                # Business orchestration
│       ├── ProductUseCase.js    # Logic implementation
│       └── ProductUseCase.test.js # Unit tests
├── domain/                      
│   ├── entities/                # Business entity definitions
│   │   └── Product.js
│   └── repositories/            # Repository Interface (Contracts)
│       └── ProductRepository.js
├── infrastructure/              
│   ├── repositories/            # Implementation (default: Prisma)
│   │   └── PrismaProductRepository.js
├── interfaces/                  
│   ├── controllers/             # Express handlers
│   │   ├── ProductController.js
│   │   └── ProductController.test.js
│   └── routes/                  # Express routes & method binding
│       └── product.routes.js
└── Product.module.js            # Central Awilix Module Registration

🛠️ Post-Scaffolding Integration

To finalize your new module integration, follow these standard steps:

  1. DI Registration: Open src/container.js and register any specific repository aliases or scoped usecases.
  2. Route Mounting: Mount the generated router in src/app.js:
    app.use('/api/v1/product', container.resolve('productRoutes'));
  3. Detailed Implementation: Build out the specific logic in the generated templates (which are already integrated via Awilix).

🤝 Contributing & Support

We welcome contributions from the community!

  1. Fork the project.
  2. Create your Feature Branch (git checkout -b feat/NewFeature).
  3. Commit your changes (git commit -m 'feat: Add some NewFeature').
  4. Push to the Branch (git push origin feat/NewFeature).
  5. Open a Pull Request.

📝 License

Distributed under the MIT License. See LICENSE for more information.