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

unified-queryparams

v0.7.2

Published

Unique Queryparams sintax (Inspired in Elastic Search) that creates queries Elastic Search and MongoDB

Downloads

37

Readme

unified-queryparams

Querystring parser that follows a simple ruleset to form querystrings and them builds the apropiate queries for different databases.

How to install

npm install --save unified-queryparams

QueryParams

Abstract class meant to be used as a super class for specific queryparam implementations

Options

  • skip: Number. Used for pagination. Defines how many documents of the result query must be skipped before returing the objects.
  • limit: Number. Used for pagination. Defines how many documents can fit in the result set.
  • fields: String. Used for projection. Defines which fields of the objects must be returned. Useful for optimizing queries.
  • defaultOperator: String. Elastic Search Exclusive. Defines how consecutive filters should be interpreted. Values: "AND", "OR". Default: "AND".
  • sort: String. Used for sorting.
  • filter: String. Used for filtering the query.

fields Sintax

<field> <field> ...

sort Sintax

<field>:<direction> <field>:<direction> <field>:<direction> ...

filter Sintax

The sintax is very similar to elastic search. There are 3 types of filters:

  • Text Search: <field> <field>
  • Equality Search: <field>:value
  • Operator Search: <field>:<operator><value> (SUPPORTED OPERATORS: >, >=, <, <=, ==, !=)

Examples:

  • "foo fighter bar"
  • "foo:fighter"
  • "foo:>=fighter"

Methods

  • get filterRegExp(): Obtains the Regular Expression used to parse the filter parameter.

  • get sortRegExp(): Obtains the Regular Expression used to parse the sort parameter.

  • get defaultOperatorRegExp(): Obtains the Regular Expression used to parse the defaultOperator parameter.

  • getSkip(): Obtains and parses the skip parameter into the appropiate query format.

  • getLimit(): Obtains and parses the limit parameter into the appropiate query format.

  • getFields(): Obtains and parses the fields parameter into the appropiate query format.

  • getDefaultOperator(): Obtains and parses the defaultOperator parameter into the appropiate query format.

ElasticSearchUriQueryParams


Implementation of the CRAF queryparams processing for Elastic Search Uri Api.

As this class is aimed for the Elastic Search Uri Search Api it is recommended to read the Api's documentation.

https://www.elastic.co/guide/en/elasticsearch/reference/current/search-uri-request.html

Methods

  • getSize(): Alias for getLimit().

  • getSource(): Alias for getFields().

  • getFrom(): Alias for getSkip().

  • getFilter(): Obtains and parses the filter parameter into the appropiate query format.

  • getQuerystring(): Returns the fully formed and formatted Elastic Search Uri queryparam

Example

const queryParams = new ElasticSearchUriQueryParams(req.query),
       querystring = queryParams.getQuerystring(),
       response = await promiseHttp.get({
         hostname: host,
         path: `/opal/${type}/_search${querystring}`,
         port: port,
       }),
       objects = response.hits.hits.map((hit) => {
         return hit._source;
       });

MongoDBQueryParams

Implementation of the CRAF queryparams processing for the MongoDB driver.

As this class is aimed for the MongoDB driver it is recommended to read the Api's documentation.

http://mongodb.github.io/node-mongodb-native/3.1/api/index.html

Methods

  • mapToMongoOperator(): Returns the corresponding mongodb operator based on the querystring operator

  • mapToMongoSort(): Returns the corresponding mongodb sort direction value based on the querystring.

  • getQuery(): Obtains the filter to be passed to the mongodb query.

  • getProjection(): Alias for getFields().

  • getQueryOptions(): Returns the fully formed query options to be passed to mongoDB

Example

const queryParams = new MongoDBQueryParams(req.query),
       query = queryParams.getQuery(),
       queryOptions = queryParams.getQueryOptions(),
       mongodb = new MongoLeroyDriver(servers, database, options),
       objects = await mongodb.find(collectionName, query, queryOptions);