Skip to content

Commit

Permalink
examples
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Feb 4, 2011
1 parent 6e8973d commit b062ac9
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@

query string parser for node supporting nesting, as it was removed from `0.3.x`, so this library provides the previous and commonly desired behaviour. Used by [express](http://expressjs.com), [connect](http://senchalabs.github.com/connect) and otheres.

## Installation

$ npm install querystring

## Examples

require('querystring').parse('user[name][first]=tj&user[email]=tj');
// => { user: { name: { first: 'tj' }}}

## License

(The MIT License)
Expand Down

0 comments on commit b062ac9

Please sign in to comment.