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

@sachin-chourasiya/mongoose-aggregation-builder

v1.0.0

Published

A secure, chainable MongoDB aggregation builder for Mongoose with input validation and safe defaults.

Readme

@sachin-chourasiya/mongoose-aggregation-builder

A simple, secure, and chainable MongoDB aggregation pipeline builder for Mongoose.
It makes complex aggregation queries easier to write, readable, and safe from injection risks.


🚀 Why Use This?

Writing raw MongoDB aggregation pipelines can be verbose and hard to maintain:

User.aggregate([
  { $match: { status: 'active' } },
  {
    $lookup: {
      from: 'orders',
      localField: '_id',
      foreignField: 'userId',
      as: 'orders',
    },
  },
  { $unwind: { path: '$orders', preserveNullAndEmptyArrays: true } },
  { $group: { _id: '$_id', totalOrders: { $sum: 1 } } },
  { $sort: { totalOrders: -1 } },
  { $limit: 10 },
]);

With @sachin-chourasiya/mongoose-aggregation-builder:

const pipeline = Agg()
  .filter({ status: 'active' })
  .join('orders', '_id', 'userId', 'orders')
  .unwind('orders', true)
  .countOrders()
  .sortBy('totalOrders', 'desc')
  .limit(10)
  .build();

User.aggregate(pipeline);

📦 Installation

npm install @sachin-chourasiya/mongoose-aggregation-builder

✨ Features

  • Chainable API → Build pipelines step-by-step
  • Secure → Sanitizes field names and prevents malicious stages
  • Readable → No more deeply nested arrays of objects
  • Reusable → Save and reuse pipelines easily
  • TypeScript Friendly → Works with .d.ts type definitions (coming soon)

📚 Usage Examples

Example 1 — Basic Filtering & Projection

const Agg = require('@sachin-chourasiya/mongoose-aggregation-builder');

const pipeline = Agg()
  .filter({ isActive: true })
  .project({ name: 1, email: 1 })
  .build();

User.aggregate(pipeline);

Generated Pipeline:

[{ $match: { isActive: true } }, { $project: { name: 1, email: 1 } }];

Example 2 — Join with Another Collection

const pipeline = Agg()
  .filter({ status: 'active' })
  .join('orders', '_id', 'userId', 'orders')
  .unwind('orders')
  .build();

User.aggregate(pipeline);

Generated Pipeline:

[
  { $match: { status: 'active' } },
  {
    $lookup: {
      from: 'orders',
      localField: '_id',
      foreignField: 'userId',
      as: 'orders',
    },
  },
  { $unwind: '$orders' },
];

Example 3 — Counting & Sorting

const pipeline = Agg()
  .filter({ status: 'active' })
  .groupBy('_id', { totalOrders: { $sum: 1 } })
  .sortBy('totalOrders', 'desc')
  .limit(5)
  .build();

User.aggregate(pipeline);

🛡 Security

  • Field Name Sanitization — prevents $ operator injection in keys
  • Safe Stage Restriction — only allows MongoDB stages you enable
  • No Eval or Function Execution — pure JSON pipelines
  • Input Validation — ensures correct data types for filters, sorting, etc.

📖 API Reference

.filter(query)

Adds a $match stage to filter documents.

.project(fields)

Adds a $project stage.

.join(collection, localField, foreignField, as)

Adds a $lookup stage to join another collection.

.unwind(path, preserveNull = false)

Adds a $unwind stage.

.groupBy(id, accumulators)

Adds a $group stage.

.countOrders()

Custom helper → counts number of joined documents.

.sortBy(field, order = "asc")

Adds a $sort stage.

.limit(n)

Adds a $limit stage.

.build()

Returns the final aggregation pipeline array.


📄 License

MIT License © 2025