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

@bodheesh/create-bodhi-node-app

v1.0.0

Published

Create a production-ready Node.js REST API with zero configuration

Readme

@bodhi/crud-api-generator

A powerful CLI tool that generates Express.js REST APIs or GraphQL endpoints from a simple JSON schema.

Features

  • 🚀 Instant API generation from JSON schema
  • 💾 Support for MongoDB, PostgreSQL, and Firebase
  • 🔄 Auto-generated CRUD operations
  • 📚 Swagger documentation generation
  • ⚡ GraphQL support
  • 🎯 Clean and maintainable code generation

Installation

npm install -g @bodhi/crud-api-generator

Usage

  1. Create a JSON schema file (e.g., schema.json):
{
  "name": "User",
  "fields": {
    "name": {
      "type": "String",
      "required": true
    },
    "email": {
      "type": "String",
      "required": true,
      "unique": true
    },
    "age": {
      "type": "Number"
    }
  }
}
  1. Generate the API:
bodhi-crud generate -s schema.json -d mongodb -t rest

Options:

  • -s, --schema: Path to JSON schema file (required)
  • -d, --database: Database type (mongodb, postgres, firebase) (default: mongodb)
  • -t, --type: API type (rest, graphql) (default: rest)
  • -o, --output: Output directory (default: ./generated)

Generated Structure

The tool will generate the following files:

generated/
├── models/
│   └── user.model.js
├── controllers/
│   └── user.controller.js
├── routes/
│   └── user.routes.js
└── swagger.json

Database Support

MongoDB

  • Uses Mongoose for schema definition and validation
  • Generates complete CRUD operations
  • Includes pagination and filtering

PostgreSQL (Coming Soon)

  • Sequelize ORM integration
  • Migration generation
  • Complex queries support

Firebase (Coming Soon)

  • Firestore integration
  • Real-time updates
  • Security rules generation

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

MIT

📦 rest-api ┣ 📂 src ┃ ┣ 📂 config ┃ ┃ ┣ 📄 index.js # Central configuration ┃ ┃ ┗ 📄 swagger.js # Swagger/OpenAPI configuration ┃ ┣ 📂 controllers ┃ ┃ ┣ 📂 auth ┃ ┃ ┃ ┗ 📄 auth.controller.js # Authentication controller ┃ ┃ ┗ 📂 user ┃ ┃ ┗ 📄 user.controller.js # User management controller ┃ ┣ 📂 middleware ┃ ┃ ┣ 📄 error.middleware.js # Global error handler ┃ ┃ ┗ 📂 validation ┃ ┃ ┣ 📄 auth.middleware.js # JWT authentication ┃ ┃ ┣ 📄 auth.validation.js # Auth input validation ┃ ┃ ┣ 📄 role.middleware.js # Role-based access control ┃ ┃ ┗ 📄 user.validation.js # User input validation ┃ ┣ 📂 models ┃ ┃ ┗ 📄 user.model.js # User model schema ┃ ┣ 📂 routes ┃ ┃ ┣ 📂 auth ┃ ┃ ┃ ┗ 📄 auth.routes.js # Auth routes ┃ ┃ ┗ 📂 user ┃ ┃ ┗ 📄 user.routes.js # User routes ┃ ┣ 📂 utils ┃ ┃ ┣ 📄 db.util.js # Database utilities ┃ ┃ ┣ 📄 error.util.js # Error classes ┃ ┃ ┣ 📄 logger.util.js # Logging utility ┃ ┃ ┗ 📄 response.util.js # Response formatter ┃ ┗ 📄 index.js # Application entry point ┣ 📂 logs # Log files directory ┣ 📄 .env.example # Environment variables example ┣ 📄 .gitignore # Git ignore file ┣ 📄 package.json # Project dependencies ┗ 📄 README.md # Project documentation