http-params

get http parameters

Usage no npm install needed!

<script type="module">
  import httpParams from 'https://cdn.skypack.dev/http-params';
</script>

README

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