Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

safe-qs

node-modules31BSD-3-Clause6.0.1

A querystring parser that supports nesting and arrays, with a depth limit

querystring, qs

readme

qs

A querystring parsing and stringifying library with some added security.

Build Status

Lead Maintainer: Nathan LaFreniere

The qs module was originally created and maintained by TJ Holowaychuk.

Usage

var Qs = require('qs');

var obj = Qs.parse('a=c');    // { a: 'c' }
var str = Qs.stringify(obj);  // 'a=c'

Parsing Objects

Qs.parse(string, [options]);

qs allows you to create nested objects within your query strings, by surrounding the name of sub-keys with square brackets []. For example, the string 'foo[bar]=baz' converts to:

{
  foo: {
    bar: 'baz'
  }
}

When using the plainObjects option the parsed value is returned as a plain object, created via Object.create(null) and as such you should be aware that prototype methods will not exist on it and a user may set those names to whatever value they like:

Qs.parse('a.hasOwnProperty=b', { plainObjects: true });
// { a: { hasOwnProperty: 'b' } }

By default parameters that would overwrite properties on the object prototype are ignored, if you wish to keep the data from those fields either use plainObjects as mentioned above, or set allowPrototypes to true which will allow user input to overwrite those properties. WARNING It is generally a bad idea to enable this option as it can cause problems when attempting to use the properties that have been overwritten. Always be careful with this option.

Qs.parse('a.hasOwnProperty=b', { allowPrototypes: true });
// { a: { hasOwnProperty: 'b' } }

URI encoded strings work too:

Qs.parse('a%5Bb%5D=c');
// { a: { b: 'c' } }

You can also nest your objects, like 'foo[bar][baz]=foobarbaz':

{
  foo: {
    bar: {
      baz: 'foobarbaz'
    }
  }
}

By default, when nesting objects qs will only parse up to 5 children deep. This means if you attempt to parse a string like 'a[b][c][d][e][f][g][h][i]=j' your resulting object will be:

{
  a: {
    b: {
      c: {
        d: {
          e: {
            f: {
              '[g][h][i]': 'j'
            }
          }
        }
      }
    }
  }
}

This depth can be overridden by passing a depth option to Qs.parse(string, [options]):

Qs.parse('a[b][c][d][e][f][g][h][i]=j', { depth: 1 });
// { a: { b: { '[c][d][e][f][g][h][i]': 'j' } } }

The depth limit helps mitigate abuse when qs is used to parse user input, and it is recommended to keep it a reasonably small number.

For similar reasons, by default qs will only parse up to 1000 parameters. This can be overridden by passing a parameterLimit option:

Qs.parse('a=b&c=d', { parameterLimit: 1 });
// { a: 'b' }

An optional delimiter can also be passed:

Qs.parse('a=b;c=d', { delimiter: ';' });
// { a: 'b', c: 'd' }

Delimiters can be a regular expression too:

Qs.parse('a=b;c=d,e=f', { delimiter: /[;,]/ });
// { a: 'b', c: 'd', e: 'f' }

Option allowDots can be used to enable dot notation:

Qs.parse('a.b=c', { allowDots: true });
// { a: { b: 'c' } }

Parsing Arrays

qs can also parse arrays using a similar [] notation:

Qs.parse('a[]=b&a[]=c');
// { a: ['b', 'c'] }

You may specify an index as well:

Qs.parse('a[1]=c&a[0]=b');
// { a: ['b', 'c'] }

Note that the only difference between an index in an array and a key in an object is that the value between the brackets must be a number to create an array. When creating arrays with specific indices, qs will compact a sparse array to only the existing values preserving their order:

Qs.parse('a[1]=b&a[15]=c');
// { a: ['b', 'c'] }

Note that an empty string is also a value, and will be preserved:

Qs.parse('a[]=&a[]=b');
// { a: ['', 'b'] }
Qs.parse('a[0]=b&a[1]=&a[2]=c');
// { a: ['b', '', 'c'] }

qs will also limit specifying indices in an array to a maximum index of 20. Any array members with an index of greater than 20 will instead be converted to an object with the index as the key:

Qs.parse('a[100]=b');
// { a: { '100': 'b' } }

This limit can be overridden by passing an arrayLimit option:

Qs.parse('a[1]=b', { arrayLimit: 0 });
// { a: { '1': 'b' } }

To disable array parsing entirely, set parseArrays to false.

Qs.parse('a[]=b', { parseArrays: false });
// { a: { '0': 'b' } }

If you mix notations, qs will merge the two items into an object:

Qs.parse('a[0]=b&a[b]=c');
// { a: { '0': 'b', b: 'c' } }

You can also create arrays of objects:

Qs.parse('a[][b]=c');
// { a: [{ b: 'c' }] }

Stringifying

Qs.stringify(object, [options]);

When stringifying, qs by default URI encodes output. Objects are stringified as you would expect:

Qs.stringify({ a: 'b' });
// 'a=b'
Qs.stringify({ a: { b: 'c' } });
// 'a%5Bb%5D=c'

This encoding can be disabled by setting the encode option to false:

Qs.stringify({ a: { b: 'c' } }, { encode: false });
// 'a[b]=c'

Examples beyond this point will be shown as though the output is not URI encoded for clarity. Please note that the return values in these cases will be URI encoded during real usage.

When arrays are stringified, by default they are given explicit indices:

Qs.stringify({ a: ['b', 'c', 'd'] });
// 'a[0]=b&a[1]=c&a[2]=d'

You may override this by setting the indices option to false:

Qs.stringify({ a: ['b', 'c', 'd'] }, { indices: false });
// 'a=b&a=c&a=d'

You may use the arrayFormat option to specify the format of the output array

Qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'indices' })
// 'a[0]=b&a[1]=c'
Qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'brackets' })
// 'a[]=b&a[]=c'
Qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'repeat' })
// 'a=b&a=c'

Empty strings and null values will omit the value, but the equals sign (=) remains in place:

Qs.stringify({ a: '' });
// 'a='

Properties that are set to undefined will be omitted entirely:

Qs.stringify({ a: null, b: undefined });
// 'a='

The delimiter may be overridden with stringify as well:

Qs.stringify({ a: 'b', c: 'd' }, { delimiter: ';' });
// 'a=b;c=d'

Finally, you can use the filter option to restrict which keys will be included in the stringified output. If you pass a function, it will be called for each key to obtain the replacement value. Otherwise, if you pass an array, it will be used to select properties and array indices for stringification:

function filterFunc(prefix, value) {
  if (prefix == 'b') {
    // Return an `undefined` value to omit a property.
    return;
  }
  if (prefix == 'e[f]') {
    return value.getTime();
  }
  if (prefix == 'e[g][0]') {
    return value * 2;
  }
  return value;
}
Qs.stringify({ a: 'b', c: 'd', e: { f: new Date(123), g: [2] } }, { filter: filterFunc })
// 'a=b&c=d&e[f]=123&e[g][0]=4'
Qs.stringify({ a: 'b', c: 'd', e: 'f' }, { filter: ['a', 'e'] })
// 'a=b&e=f'
Qs.stringify({ a: ['b', 'c', 'd'], e: 'f' }, { filter: ['a', 0, 2] })
// 'a[0]=b&a[2]=d'

Handling of null values

By default, null values are treated like empty strings:

Qs.stringify({ a: null, b: '' });
// 'a=&b='

Parsing does not distinguish between parameters with and without equal signs. Both are converted to empty strings.

Qs.parse('a&b=')
// { a: '', b: '' }

To distinguish between null values and empty strings use the strictNullHandling flag. In the result string the null values have no = sign:

Qs.stringify({ a: null, b: '' }, { strictNullHandling: true });
// 'a&b='

To parse values without = back to null use the strictNullHandling flag:

Qs.parse('a&b=', { strictNullHandling: true });
// { a: null, b: '' }

To completely skip rendering keys with null values, use the skipNulls flag:

qs.stringify({ a: 'b', c: null}, { skipNulls: true })
// 'a=b'

changelog

5.1.0

  • #117 make URI encoding stringified results optional
  • #106 Add flag skipNulls to optionally skip null values in stringify

5.0.0

  • #114 default allowDots to false
  • #100 include dist to npm

4.0.0

  • #98 make returning plain objects and allowing prototype overwriting properties optional

3.1.0

  • #89 Add option to disable "Transform dot notation to bracket notation"

3.0.0

  • #80 qs.parse silently drops properties
  • #77 Perf boost
  • #60 Add explicit option to disable array parsing
  • #74 Bad parse when turning array into object
  • #81 Add a filter option
  • #68 Fixed issue with recursion and passing strings into objects.
  • #66 Add mixed array and object dot notation support Closes: #47
  • #76 RFC 3986
  • #85 No equal sign
  • #84 update license attribute

2.4.1

  • #73 Property 'hasOwnProperty' of object #<Object> is not a function

2.4.0

  • #70 Add arrayFormat option

2.3.3

  • #59 make sure array indexes are >= 0, closes #57
  • #58 make qs usable for browser loader

2.3.2

  • #55 allow merging a string into an object

2.3.1

  • #52 Return "undefined" and "false" instead of throwing "TypeError".

2.3.0

  • #50 add option to omit array indices, closes #46

2.2.5

  • #39 Is there an alternative to Buffer.isBuffer?
  • #49 refactor utils.merge, fixes #45
  • #41 avoid browserifying Buffer, for #39

2.2.4

  • #38 how to handle object keys beginning with a number

2.2.3

  • #37 parser discards first empty value in array
  • #36 Update to lab 4.x

2.2.2

  • #33 Error when plain object in a value
  • #34 use Object.prototype.hasOwnProperty.call instead of obj.hasOwnProperty
  • #24 Changelog? Semver?

2.2.1

  • #32 account for circular references properly, closes #31
  • #31 qs.parse stackoverflow on circular objects

2.2.0

  • #26 Don't use Buffer global if it's not present
  • #30 Bug when merging non-object values into arrays
  • #29 Don't call Utils.clone at the top of Utils.merge
  • #23 Ability to not limit parameters?

2.1.0

  • #22 Enable using a RegExp as delimiter

2.0.0

  • #18 Why is there arrayLimit?
  • #20 Configurable parametersLimit
  • #21 make all limits optional, for #18, for #20

1.2.2

  • #19 Don't overwrite null values

1.2.1

  • #16 ignore non-string delimiters
  • #15 Close code block

1.2.0

  • #12 Add optional delim argument
  • #13 fix #11: flattened keys in array are now correctly parsed

1.1.0

  • #7 Empty values of a POST array disappear after being submitted
  • #9 Should not omit equals signs (=) when value is null
  • #6 Minor grammar fix in README

1.0.2

  • #5 array holes incorrectly copied into object on large index