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

@haensl/koa-objectid-middleware

v1.0.0

Published

Middleware to parse MongoDB ObjectIDs from a Koa request path parameter.

Downloads

8

Readme

@haensl/koa-objectid-middleware

Middleware to parse MongoDB ObjectIDs from a Koa request path parameter.

NPM

npm version

CircleCI

Use this middleware when a route requires a request parameter to be a MongoDB ObjectID, e.g. when specifying resource ids in routes such as /resource/:id.

When designing routes in an application that uses MongoDB as the database, using MongoDB Object IDs as path parameters can be a convenient and efficient approach. MongoDB Object IDs are unique identifiers automatically assigned to each document in a collection.

By including the Object ID as a path parameter in a route, you can easily target and manipulate specific documents. For example, a route like /users/:userId can be used to retrieve, update, or delete a user document based on its Object ID.

Using Object IDs as path parameters offers several benefits. It ensures the uniqueness of the identifier, simplifies route handling on the server side, and provides a consistent and standardized way to access individual documents. Additionally, it aligns well with MongoDB's query capabilities, allowing for efficient retrieval and modification of specific resources.

Overall, leveraging MongoDB Object IDs as path parameters in routes streamlines the development process and enhances the precision and control of interactions with the database.

Installation

Via npm

$ npm install -S @haensl/koa-objectid-middleware mongodb

Via yarn

$ yarn add @haensl/koa-objectid-middleware mongodb

Usage

  1. Install @haensl/koa-objectid-middleware

  2. Ensure you have mongodb installed as it's a peer dependency.

  3. Use middleware in your projects:

    // router.js - Router
    const requireObjectID = require('@haensl/koa-objectid-middleware');
    const Router = require('@koa/router');
    
    const router = new Router();
    
    // `GET /:id route handler`
    const get = require('./get');
    
    
    // require `ctx.request.params.id` to be a valid MongoDB ObjectID.
    router.get('/:id', requireObjectID(), get);
    
    module.exports = router;
    // get.js - Get route
    module.exports = async (ctx) => {
      // Use the object id in your routes.
      const resource = await getResource(ctx.resourceId);
    
      // ...
    };

Synopsis

The koa-object-middleware is exposed as a function that takes an options object and returns an async Koa middleware:

({
  // The property path within ctx.request to parse the ObjectID from.
  // I.e. the name of the route param.
  ctxRequestPath: 'params.id',

  // The name of the property on ctx to store the ObjectID.
  ctxProperty: 'resourceId',

  // Set to false to ignore errors.
  // By default ctx.throw is called if the id parameter is missing (404) or malformed (400).
  throwOnError: true
}) => async (ctx, next) => { }

Changelog

License