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

mongozen

v1.0.0

Published

Type-safe, developer-friendly MongoDB aggregation pipeline builder for TypeScript, with auto-relation support and full IntelliSense. Works great with NestJS, Mongoose, or Node.js apps.

Readme

🧠 mongozen

A type-safe, intuitive, and developer-friendly MongoDB Aggregation Pipeline Builder for TypeScript.
Designed to work seamlessly with frameworks like NestJS, Express, or any Node.js app.


🚀 Features

  • ✅ Fully type-safe aggregation builder
  • ✅ Auto-detect relations from model schema using generics
  • ✅ Only valid $lookup options suggested via IntelliSense
  • ✅ Supports over 20+ MongoDB stages
  • ✅ Built-in support for NestJS & Mongoose
  • ✅ No any used internally — 100% strict TypeScript
  • ✅ Modular, composable, extensible
  • ✅ CLI/Web UI export support coming soon

📦 Installation

npm install mongozen

Or if using yarn:

    yarn add mongozen

Or if using pnpm:

    pnpm add mongozen

🧩 Usage

Step 1: Define Your Models

interface User {
  id: number;
  name: string;
}

interface Post {
  id: number;
  title: string;
  userId: number;
}

Step 2: Use the Builder

import { AggregationBuilder, AutoRelations } from 'mongozen';

type Models = { post: Post; user: User };

const relations: AutoRelations<Models> = {
  post: ['user'],
  user: [],
};

const builder = new AggregationBuilder<Models, 'post', typeof relations>(relations);

const pipeline = builder
  .match({ title: { $exists: true } })
  .lookup({
    from: 'user',
    localField: 'userId',
    foreignField: 'id',
    as: 'userInfo',
  })
  .project({ title: 1, userInfo: 1 })
  .sort({ title: 1 })
  .build();

Now you can use this pipeline in Mongoose, MongoClient, or any MongoDB driver:

await PostModel.aggregate(pipeline).exec();

🛠 Supported Stages

  • $match, $sort, $project, $limit, $skip, $count
  • $lookup (with relation validation)
  • $group, $unwind, $set, $unset, $addFields
  • $replaceRoot, $replaceWith
  • $unionWith, $out, $merge
  • $facet

More advanced stages like $graphLookup, $setWindowFields coming soon.

📐 AutoRelations

You don’t need to manually write relationships. Use AutoRelations:

const relations: AutoRelations<Models> = {
  post: ['user'],
  user: [],
};

It automatically checks for userId, postId etc. and maps them to available models.

🌐 Roadmap

  • CLI Support (mongozen build query.ts --out pipeline.json)
  • Web UI (drag & drop stages, export pipeline)
  • VSCode Extension
  • Prisma adapter / Mongoose schema reader
  • More custom DSLs (like fromQuery())

👥 Contributing

We welcome all contributions, big or small!

🛠 Setup

git clone https://github.com/webcoderspeed/mongozen.git
cd mongozen
npm install

🧑‍💻 Run Locally

npm run dev

📢 Open PRs

  • Make sure everything passes tsc --noEmit
  • Include proper test cases
  • Describe your feature clearly in PR title + body

💡 Inspiration

This project was born out of frustration from untyped, verbose, and unsafe aggregation queries. We wanted an elegant and IntelliSense-powered DSL to write complex queries faster — hence, mongozen.

🧑 Author

Made with 💚 by @webcoderspeed

📄 License

MIT License © 2025