node-querystring

querystring parser for node and the browser - supporting nesting (used by Express, Connect, etc)

MIT License

Stars
455
Committers
25

THIS REPOSITORY IS NOW DEPRECATED

[email protected]+ is now maintained by the awesome hapijs team at hapijs/qs. Please direct any new issues and concerns in that repository!

node-querystring Build Status

query string parser for node and the browser supporting nesting, as it was removed from 0.3.x, so this library provides the previous and commonly desired behaviour (and twice as fast). Used by express, connect and others.

Installation

$ npm install qs

Examples

var qs = require('qs');

qs.parse('user[name][first]=Tobi&user[email][email protected]');
// => { user: { name: { first: 'Tobi' }, email: '[email protected]' } }

qs.stringify({ user: { name: 'Tobi', email: '[email protected]' }})
// => user[name]=Tobi&user[email]=tobi%40learnboost.com

Testing

Install dev dependencies:

$ npm install -d

and execute:

$ make test

browser:

$ open test/browser/index.html