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

@cmddevelop/query-parameters

v1.0.10

Published

Translates URL query parameters for Mongoose, Express, and MongoDb

Downloads

14

Readme

@cmddevelop/query-parameters

NPM version Downloads

Converts URL query string into a Mongoose friendly object. Create and object with key values for Mongoose options and filtering.

This library was build using this mongoose-query-parser as a starting point. Thank you for the good work. It was used as a starting point to develop this for a custom application.

Features

  • Supports the most of MongoDB operators ($in, $regexp, $exists) and features including skip, sort, limit, population
  • Additionally, there is a key word of page that can be applied in order to work with mongoose-paginate
  • Auto type casting of Number, RegExp, Date, Boolean and null
  • String templates/predefined queries (i.e. firstName=${my_vip_list})
  • Allows customization of keys and options in query string

Installation

npm i @cmddevelop/query-parameters

Usage

API

import { QueryParser } from '@cmddevelop/query-parameters';

const parser = new QueryParser(options?: ParserOptions)
parser.parse(query: string, predefined: any) : QueryOptions
Arguments
  • ParserOptions: object for advanced options (See below) [optional]
  • query: query string part of the requested API URL (ie, firstName=John&limit=10). Works with already parsed object too (ie, {status: 'success'}) [required]
  • predefined: object for predefined queries/string templates [optional]

Returns

  • QueryOptions: object contains the following properties:
    • filter which contains the query criteria
    • populate which contains the query population. Please see Mongoose Populate for more details
    • select which contains the query projection
    • sort, skip, limit which contains the cursor modifiers for paging purpose

Filtering operators

| MongoDB | URI | Example | Result | | ------- | --- | ------- | ------ | | $eq | key=val | type=public | {filter: {type: 'public'}} | | $gt | key>val | count>5 | {filter: {count: {$gt: 5}}} | | $gte | key>=val | rating>=9.5 | {filter: {rating: {$gte: 9.5}}} | | $lt | key<val | createdAt<2017-10-01 | {filter: {createdAt: {$lt: 2017-09-30T14:00:00.000Z}}} | | $lte | key<=val | score<=-5 | {filter: {score: {$lte: -5}}} | | $ne | key!=val | status!=success | {filter: {status: {$ne: 'success'}}} | | $in | key=val1,val2 | country=GB,US | {filter: {country: {$in: ['GB', 'US']}}} | | $nin | key!=val1,val2 | lang!=fr,en | {filter: {lang: {$nin: ['fr', 'en']}}} | | $exists | key | phone | {filter: {phone: {$exists: true}}} | | $exists | !key | !email | {filter: {email: {$exists: false}}} | | $regex | key=/value/<opts> | email=/@gmail\.com$/i | {filter: {email: /@gmail.com$/i}} | | $regex | key!=/value/<opts> | phone!=/^06/ | {filter: {phone: { $not: /^06/}}} |

For more advanced usage ($or, $type, $elemMatch, etc.), pass any MongoDB query filter object as JSON string in the filter query parameter, ie:

Populate operators

  • Useful to populate sub-document(s) in query. Works with MongooseJS. Please see Mongoose Populate for more details
  • Allows to populate only selected fields
  • Default operator key is populate

Skip / Limit / Page operators

  • Useful to limit the number of records returned
  • Default operator keys are skip or page, and limit