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 🙏

© 2025 – Pkg Stats / Ryan Hefner

nodegenx

v1.0.2

Published

A CLI tool to generate Node.js backend project.

Readme

Nodegenx

Nodegenx is a CLI tool designed to generate a complete Node.js backend project structure quickly and efficiently. It provides ready-made templates with organized folder and file structures, helping developers save time and start building right away.


📦 Package Information

  • Name: nodegenx
  • Version: 1.0.2
  • Repository: GitHub
  • Author: M Nikhil Kumar
  • License: MIT

🚀 Installation

You can use npx to run Nodegenx without installing it globally:

npx nodegenx


⚙️ Requirements

  • Node.js: v16 or higher

📂 Templates

Currently, Nodegenx provides one template with a pre-defined folder and file structure. More templates will be added in the future.

Available Template(s)

  • --template (default)

Example Structure:

my-node-backend/
├── src/
│   ├── controllers/
│   ├── models/
│   ├── routes/
│   └── utils/
├── tests/
├── package.json
├── .gitignore
└── README.md

1. ecommerce

ecommerce/
│   .env
│   .eslintrc.js
│   .prettierrc
│   package.json
└───src
    │   app.js
    ├───config
    │       db.js
    ├───controllers
    │       auth.controller.js
    ├───middlewares
    │       auth.middleware.js
    ├───models
    │       user.model.js
    └───routes
            auth.routes.js

2. js-jwt-rest

js-jwt-rest/
│   .env
│   .eslintrc.js
│   .prettierrc
│   package.json
└───src
    │   app.js
    ├───config
    │       db.js
    ├───controllers
    │       auth.controller.js
    ├───middlewares
    │       auth.middleware.js
    ├───models
    │       user.model.js
    └───routes
            auth.routes.js

3. js-rest-swagger

js-rest-swagger/
│   .env
│   .eslintrc.js
│   package.json
└───src
    │   app.js
    ├───config
    │       db.js
    └───swagger
            swagger.js

4. linting

linting/
│   .eslintrc.js.ejs
│   .prettierrc.ejs

5. node-oauth-rest

node-oauth-rest/
│   .env
│   .eslintrc.js
│   .prettierrc
│   package.json
└───src
    │   app.js
    ├───config
    │       db.js
    ├───controllers
    │       auth.controller.js
    ├───middlewares
    │       auth.middleware.js
    ├───models
    │       user.model.js
    └───routes
            auth.routes.js

6. node-prisma-rest

node-prisma-rest/
│   .env
│   .eslintrc.js
│   package.json
├───prisma
│       schema.prisma
└───src
    │   app.js
    ├───config
    │       db.js
    ├───controllers
    │       example.controller.js
    ├───middlewares
    │       example.middleware.js
    ├───models
    │       example.model.js
    └───routes
            example.routes.js

7. node-serverless-template

node-serverless-template/
│   .env
│   package.json
│   serverless.yml
└───src
    ├───functions
    │       auth.js
    ├───middlewares
    │       authMiddleware.js
    ├───models
    │       user.js
    └───utils
            response.js

8. ts-event-driven

ts-event-driven/
│   .env
│   .eslintrc.js
│   package.json
│   tsconfig.json
└───src
    │   app.ts
    ├───config
    │       db.ts
    ├───controllers
    │       sampleController.ts
    ├───events
    │   ├───consumers
    │   │       sampleConsumer.ts
    │   └───producers
    │           sampleProducer.ts
    └───middlewares
            loggerMiddleware.ts

9. ts-jwt-graphql

ts-jwt-graphql/
│   .env
│   .eslintrc.js
│   .prettierrc
│   package.json
│   tsconfig.json
└───src
    │   app.ts
    ├───config
    │       db.ts
    ├───graphql
    │   │   schema.ts
    │   └───resolvers
    │           user.resolver.ts
    ├───middlewares
    │       auth.middleware.ts
    └───models
            user.model.ts

10. ts-microservice-template

ts-microservice-template/
│   .env
│   .eslintrc.js
│   package.json
│   tsconfig.json
└───src
    │   app.ts
    ├───controllers
    │       user.controller.ts
    ├───middlewares
    │       auth.middleware.ts
    ├───routes
    │       user.routes.ts
    └───services
            authService.ts
            userService.ts

Each template will come with its own detailed description and file/folder tree.


🛠️ Usage

You can generate a project with or without specifying a template:

Default usage or custom template design

npx nodegenx

With template option

npx nodegenx --template <template-name>

Replace <template-name> with any available template name.


📖 Examples

Generate a project using the default template:

npx nodegenx

Generate a project using a specific template:

npx nodegenx --template basic-express

📌 Roadmap

  • Add more templates (Express, GraphQL, REST API, etc.)
  • Auto-install Node modules (optional)
  • Docker and Git configuration options
  • Contributing guidelines

✨ Philosophy

Nodegenx aims to be friendly, clear, and developer-focused, with an emphasis on a quick start experience.


📄 License

This project is licensed under the MIT License.