http-params

1.0.1 • Public • Published

http-params

Build Status

Easy access to http parameters.

usage

var http = require('http'),
    parse = require('http-params')
 
http.createServer(function (req, res) {
  parse(req, function (err, params) {
    console.log(JSON.stringify(params))
  })
}).listen(7734)

For GET and DELETE requests, the query string object is parsed and returned. For POST and PUT requests, the form body is collected, parsed, and returned.

license

MIT

/http-params/

    Package Sidebar

    Install

    npm i http-params

    Weekly Downloads

    11

    Version

    1.0.1

    License

    MIT

    Last publish

    Collaborators

    • jarofghosts