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

@smth-for/mongoose-cursor

v1.0.5

Published

Cursor based custom library for Mongoose with customizable labels.

Downloads

16

Readme

Banner

mongoose-cursor

npm version

Dependency Status devDependency Status contributions welcome Downloads HitCount

A cursor based custom library for Mongoose with customizable labels.

Why This Plugin

moongoose-cursor is a cursor based library having a cursor wrapper. The plugin can be used as both page as well as cursor pagination. The main usage of the plugin is you can alter the return value keys directly in the query itself so that you don't need any extra code for transformation.

The below documentation is in progress. Feel free to contribute. :)

Installation

npm install @smth-for/mongoose-cursor

Usage

Add plugin to a schema and then use model cursor method:

const mongoose         = require('mongoose');
const mongoosePaginate = require('moongoose-cursor');

const mySchema = new mongoose.Schema({
  /* your schema definition */
});

mySchema.plugin(mongoosePaginate);

const myModel = mongoose.model('SampleModel',  mySchema);

myModel.cursor().then({}) // Usage

Model.cursor([query], [options], [callback])

Returns promise

Parameters

  • [query] {Object} - Query criteria. Documentation
  • [options] {Object}
    • [select] {Object | String} - Fields to return (by default returns all fields). Documentation
    • [collation] {Object} - Specify the collation Documentation
    • [sort] {Object | String} - Sort order. Documentation
    • [populate] {Array | Object | String} - Paths which should be populated with other documents. Documentation
    • [projection] {String | Object} - Get/set the query projection. Documentation
    • [lean=false] {Boolean} - Should return plain javascript objects instead of Mongoose documents? Documentation
    • [leanWithId=true] {Boolean} - If lean and leanWithId are true, adds id field with string representation of _id to every document
    • [limit=10] {Number}
    • [customLabels] {Object} - Developers can provide custom labels for manipulating the response data.
    • [key] {String} - Key field in Scheme for apply a cursor logic (Default: _id)
    • [startingAfter] {String} - Apply a cursor logic for starting result after value (Default: null)
    • [endingBefore] {String} - Apply a cursor logic for ending result before value (Default: null)
    • [forceCountFn] {Boolean} - Set this to true, if you need to support $geo queries.
    • [read] {Object} - Determines the MongoDB nodes from which to read. Below are the available options.
      • [pref]: One of the listed preference options or aliases.
      • [tags]: Optional tags for this query. (Must be used with [pref])
    • [options] {Object} - Options passed to Mongoose's find() function. Documentation

Return value

Promise fulfilled with object having properties:

  • docs {Array} - Array of documents
  • totalDocs {Number} - Total number of documents in collection that match a query
  • limit {Number} - Limit that was used
  • hasMore {Boolean} - Result have a another docs
  • startingAfter {String} - Appling a cursor logic for starting result after value (Default: null)
  • endingBefore {String} - Appling a cursor logic for ending result before value (Default: null)
  • meta {Object} - Object of pagination meta data (Default false).

Please note that the above properties can be renamed by setting customLabels attribute.

Sample Usage

Return first 10 documents from 100

const options = {
  limit: 10,
  collation: {
    locale: 'en'
  }
};

Model.cursor({}, options, function(err, result) {
  // result.docs
  // result.totalDocs = 100
  // result.limit = 10
  // result.hasMore = true
});

With custom return labels

Now developers can specify the return field names if they want. Below are the list of attributes whose name can be changed.

  • totalDocs
  • docs
  • limit
  • key
  • hasMore
  • startingAfter
  • endingBefore
  • meta

You should pass the names of the properties you wish to changes using customLabels object in options. Set the property to false to remove it from the result. Same query with custom labels

const myCustomLabels = {
  totalDocs: 'itemCount',
  docs: 'itemsList',
  limit: 'limit',
  hasMore: 'another',
  startingAfter: 'starting',
  endingBefore: 'endingBefore',
  meta: 'meta'
};

const options = {
  limit: 10,
  customLabels: myCustomLabels
};

Model.cursor({}, options, function(err, result) {
  // result.itemsList [here docs become itemsList]
  // result.meta.itemCount = 100 [here totalDocs becomes itemCount]
});

With promise:

Model.cursor({}, { limit: 10 }).then(function(result) {
  // ...
});

More advanced example

var query   = {};
var options = {
  select:   'title date author',
  sort:     { date: -1 },
  populate: 'author',
  lean:     true,
  limit:    10
};

Book.cursor(query, options).then(function(result) {
  // ...
});

Zero limit

You can use limit=0 to get only metadata:

Model.cursor({}, { limit: 0 }).then(function(result) {
  // result.docs - empty array
  // result.totalDocs
  // result.limit - 0
});

Set custom default options for all queries

config.js:

var mongoosePaginate = require('moongoose-cursor');

mongoosePaginate.cursor.options = {
  lean:  true,
  limit: 20
};

controller.js:

Model.cursor().then(function(result) {
  // result.docs - array of plain javascript objects
  // result.limit - 20
});

Fetch all docs without cursor.

If you need to fetch all the documents in the collection without applying a limit. Then set cursor as false,

const options = {
  pagination: false
};

Model.cursor({}, options, function(err, result) {
  // result.docs
  // result.totalDocs = 100
  // result.limit = 100
});

Setting read preference.

Determines the MongoDB nodes from which to read.

const options = {
  lean: true,
  limit: 10,
  read: {
    pref: 'secondary',
    tags: [{
      region: 'South'
    }]
  }
};
    
Model.cursor({}, options, function(err, result) {
 // Result
});

Below are some references to understand more about preferences,

  • https://github.com/Automattic/mongoose/blob/master/lib/query.js#L1008
  • https://docs.mongodb.com/manual/core/read-preference/
  • http://mongodb.github.io/node-mongodb-native/driver-articles/anintroductionto1_1and2_2.html#read-preferences

Note

There are few operators that this plugin does not support natively, below are the list and suggested replacements,

  • $where: $expr
  • $near: $geoWithin with $center
  • $nearSphere: $geoWithin with $centerSphere

But we have added another option. So if you need to use $near and $nearSphere please set forceCountFn as true and try running the query.

const options = {
  lean: true,
  limit: 10,
  forceCountFn: true
};
    
Model.cursor({}, options, function(err, result) {
 // Result
});

Join SMTH Community

Discord Banner 2

INVITATION LINK

Code of Conduct

Contributor Covenant

License

MIT

Special Thanks