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

mongodb-cursor-pagination

v1.8.0

Published

Cursor-based pagination for MongoDB

Downloads

144

Readme

mongodb-cursor-pagination npm

GitHub Workflow Status code style: prettier

Cursor-based pagination for MongoDB.

Based on mongo-cursor-pagination but written from scratch in TypeScript with an API that resembles the cursor connection spec from Relay.

The problem

By default, MongoDB allows us to paginate results with limit and skip. That's known as offset-based pagination. It's definitely the simplest way to paginate, but in some situations it's not very stable.

Imagine you have a restaurant software showing a list of orders paginated with limit: 3 and skip: 0:

  • { _id: ObjectId, number: 53 }
  • { _id: ObjectId, number: 52 }
  • { _id: ObjectId, number: 51 }

Nice, so far so good. Now, when you click the button to see the next page, here's what you'd expect to see (limit: 3, skip: 3):

  • { _id: ObjectId, number: 50 }
  • { _id: ObjectId, number: 49 }
  • { _id: ObjectId, number: 48 }

Pretty reasonable, right? By using skip: 3 we're basically telling MongoDB hey, I want to skip orders #53, #52 and #51.

But imagine a new order (#54) arrived while we were staring at the 1st page. In that case, querying with skip: 3 would actually give us:

  • { _id: ObjectId, number: 51 }
  • { _id: ObjectId, number: 50 }
  • { _id: ObjectId, number: 49 }

That's because in this new scenario we're actually telling MongoDB hey, I want to skip orders #54, #53 and #52.

If you have any trouble to fully comprehend what's happening here, try to imagine the following scenario yourself:

  • You've queried the 1st page with limit: 3 and skip: 0.
  • While you are looking at the 1st page, 200 new orders arrive.
  • What will you see when you try to query the 2nd page with limit: 3 and skip: 3?

The solution

So how can we make sure that the 2nd page always start from the order #50 no matter how many orders have been received in the meantime? Well, a naive approach would be like:

collection
  .find({ number: { $lt: 51 } }
  .sort({ number: -1 })
  .toArray()

And that's somewhat what this lib does but in a much more robust way.

For a more thorough explanation I highly recommend reading the excellent blog post from Mixmax. You can also read the source code — I tried to add helpful comments.

Installation

npm i mongodb-cursor-pagination
yarn add mongodb-cursor-pagination

Usage

import { MongoClient } from 'mongodb'
import { findPaginated } from 'mongodb-cursor-pagination'

const client = await MongoClient.connect(uri)
const db = client.db()
const collection = db.collection('users')

let skipFirst20

// Get third page
skipFirst20 = await findPaginated(collection, {
  first: 10,
  skip: 20
})


let result

// Get first page
result = await findPaginated(collection, {
  first: 10
})

// Go to second page
result = await findPaginated(collection, {
  first: 10,
  after: result.pageInfo.endCursor,
})

// Back to first page
result = await findPaginated(collection, {
  last: 10,
  before: result.pageInfo.startCursor,
})

API

findPaginated

Runs a paginated query on top of Collection#find.

Arguments

  • collection: The MongoDB collection.
  • params:
    • Properties:
      • first: How many documents to get (forwards pagination).
      • after: The cursor (forwards pagination).
      • last: How many documents to get (backwards pagination).
      • before: The cursor (backwards pagination).
      • query: The query to be passed to Collection#find.
      • sort: The sort to be passed to Collection#find.
      • projection: The projection to be passed to Collection#find.

Returns

  • edges: An array with the contents of the page.
    • Properties:
      • node: The document.
      • cursor: An opaque string pointing to this document in the context of this query. It can be passed to parameters after or before to get a page starting after or before this document.
  • pageInfo:
    • Properties
      • startCursor: The cursor of the first document in this page.
      • endCursor: The cursor of the last document in this page.
      • hasPreviouPage: Whether there's another page before this one.
      • hasNextPage: Whether there's another page after this one.

aggregatePaginated

Runs a paginated aggregation on top of Collection#aggregate.

Arguments

  • collection: The MongoDB collection.
  • params:
    • Properties:
      • first: How many documents to get (forwards pagination).
      • after: The cursor (forwards pagination).
      • last: How many documents to get (backwards pagination).
      • before: The cursor (backwards pagination).
      • pipeline: The pipeline array to be passed to Collection#aggregate.
      • sort: The sort to be passed to Collection#aggregate.

Returns

  • edges: An array with the contents of the page.
    • Properties:
      • node: The document.
      • cursor: An opaque string pointing to this document in the context of this query. It can be passed to parameters after or before to get a page starting after or before this document.
  • pageInfo:
    • Properties
      • count: The number of nodes fetched for current page.
      • totalCount: The number of nodes available based on query.
      • startCursor: The cursor of the first document in this page.
      • endCursor: The cursor of the last document in this page.
      • hasPreviouPage: Whether there's another page before this one.
      • hasNextPage: Whether there's another page after this one.

License

Released under the MIT License.