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 🙏

© 2024 – Pkg Stats / Ryan Hefner

mongocruise

v1.7.0

Published

A smooth, trouble-free journey through your MongoDB collections with simple RESTful APIs.

Downloads

99

Readme

workflow codecov

Mongocruise

"A smooth, trouble-free journey through your MongoDB collections with simple RESTful APIs."

Mongocruise is a flexible, user-friendly plugin for the Hapi.js server framework. It provides an intuitive way to create MongoDB-backed HTTP routes.

Features

  • Easily define CRUD operations in your Hapi.js routes.
  • Flexible route parameters that leverage MongoDB's search capabilities.
  • Supports various MongoDB operations including find, findOne, insertOne, updateOne, deleteOne, and aggregate for more advanced queries.

Installation

npm install mongocruise

Prerequisites

This plugin requires a MongoDB connection registered on the server using the mongokai Hapi.js plugin. The connection is exposed via a property server.mongo.db.

Usage

  1. Register the plugin:
await server.register(require('mongocruise'))
  1. Use the mongocruise handler in your route configurations:
{
  method: 'GET',
  path: '/users',
  handler: {
    mongocruise: {
      collection: 'users',
      operation: 'find',
    }
  }
}

For aggregate operations, the pipeline option must be a function that returns an array representing the aggregation pipeline:

{
  method: 'GET',
  path: '/aggregatedUsers',
  handler: {
    mongocruise: {
      collection: 'users',
      operation: 'aggregate',
      pipeline: (request) => [
        { $match: { age: { $gte: 18 } } },
        { $group: { _id: null, total: { $sum: 1 } } }
      ]
    }
  }
}

The mongocruise handler supports the following options:

  • collection: The MongoDB collection to use.
  • operation: The MongoDB operation to perform. Can be one of find, findOne, insertOne, updateOne, deleteOne, or aggregate.
  • queryParam: The parameter to use for findOne, updateOne, and deleteOne operations.
  • setTimestamps: The flag to add createdAt or updatedAt on the create and update operations.
  • pipeline: A function that returns an array representing the aggregation pipeline for aggregate operations.

For find operations, query parameters such as skip, limit, sort, projection, and find can be passed directly in the request. These parameters should be in JSON format.

Example

Simple Query Example

{
  method: 'GET',
  path: '/users/{id}',
  handler: {
    mongocruise: {
        collection: 'users',
        operation: 'findOne',
        queryParam: '_id'
    }
  }
}

This route configuration would use the findOne operation on the users collection, using the _id route parameter to find a specific user.

Aggregation Example

{
  method: 'GET',
  path: '/todos',
  handler: {
    mongocruise: {
      collection: 'todos',
      operation: 'aggregate',
      pipeline: (request) => [
        { $match: { author: request.query.userId } },
        { $facet: {
            totalTodos: [{ $count: "count" }],
            todos: [
              { $skip: request.query.skip || 0 },
              { $limit: request.query.limit || 10 },
              { $project: { _id: 1, title: 1 } }
            ]
          }
        },
        { $project: {
            totalTodos: { $arrayElemAt: ["$totalTodos.count", 0] },
            todos: 1
          }
        }
      ]
    }
  }
}

Note that pipeline is a function. This is required since we need to pass down the request values to the pipeline to support dynamic values.

Error Handling

If an invalid operation is passed in, or if there's an issue with the request's query parameters, mongocruise will throw an error.

Testing

This plugin is thoroughly unit tested. Please refer to the tests in the /test directory for more examples of how to use the plugin.

Contribution

Contributions are welcome! Please submit a pull request and ensure your changes pass the existing tests and linting rules.

License

This project is licensed under the MIT License. See the license file for details.