http-params
v1.0.1
Published
get http parameters
Downloads
96
Maintainers
Readme
http-params
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