Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@bitovi/querystring-parser

Package Overview
Dependencies
Maintainers
8
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bitovi/querystring-parser

## Purpose / Usecase Consider the following situation:

  • 0.2.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
230
decreased by-57.01%
Maintainers
8
Weekly downloads
 
Created
Source

QUERYSTRING PARSER

Purpose / Usecase

Consider the following situation:

  • You're building a standard CRUD app that more-or-less follows the JSON:API specification
  • This app will receive HTTP GET requests with query strings like those in the examples below:
    • ?filter[start_date][$gt]=2020-01-01
    • ?sort=-date,name&page[number]=1&page[size]=5
    • fields[articles]=title,body&fields[people]=name
  • You need to parse these query parameters to fetch the requested data. This library does the query string parsing for you.

Usage

Installation

// todo

Sort Parameters

The parsed results of the sort query parameter are stored in the sort property. The value of the sort property is an array of "sort field" objects. Each "sort field" object includes a field name and a sort direction.

Reference: JSON:API - Sorting

const { sort } = querystringParser('sort=-date,name')
console.log(sort[0]) // --> { field: 'date', direction: 'DESC' }
console.log(sort[1]) // --> { field: 'name', direction: 'ASC' }

Pagination Parameters

The parsed results of the page* query parameters are stored in the page property. The value of the page property is an object which has 2 keys: number and size.

Reference: JSON:API - Pagination

const { page } = querystringParser('page[number]=0&page[size]=10')
console.log(page.number) // --> 0
console.log(page.size)   // --> 10

Filter Parameters

The parsed results of the filter* query parameters are stored in the filter property. The value of the filter property is an array of "comparison" objects. Each "comparison" object includes 3 properties:

  • field - the name of the field
  • comparator - the SQL comparison operator
  • value - the value to compare

Reference: JSON:API - Filtering

Reference: JSON:API Recommendations - Filtering

const { filter } = querystringParser('filter[start_date][$eq]=2020-01-01')
console.log(filter[0].field)      // --> 'start_date'
console.log(filter[0].comparator) // --> '='
console.log(filter[0].value)      // --> '2020-01-01'

Include Parameters

The parsed results of the include query parameter is stored in the include property. The value of the include property is an array of "relationship paths".

Reference: JSON:API - Inclusion of Related Resources

const { include } = querystringParser('include=children.movies.actors.children,children.movies.actors.pets,children.pets,pets')
console.log(include[0]) // --> 'children.movies.actors.children'
console.log(include[1]) // --> 'children.movies.actors.pets'
console.log(include[2]) // --> 'children.pets'
console.log(include[3]) // --> 'pets'

Fields Parameters

The parsed results of the fields[TYPE] query parameters are stored in the fields property. The value of the fields property is an object. For each key-value pair in that object, the key is the name of a type and the value is an array of fields for that type.

Reference: JSON:API - Sparse Fieldsets

const { fields } = querystringParser('fields[articles]=title,body&fields[people]=name')
console.log(fields.articles) // --> [ 'title', 'body' ]
console.log(fields.people) // --> [ 'name' ]

Development / Contributing

See CONTRIBUTING.md

Keywords

FAQs

Package last updated on 13 May 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc