You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
巴林闲侠
6f4dcd76d0
|
3 years ago | |
---|---|---|
.. | ||
HISTORY.md | 3 years ago | |
LICENSE | 3 years ago | |
README.md | 3 years ago | |
index.js | 3 years ago | |
package.json | 3 years ago |
README.md
inflation
Automatically unzip an HTTP stream.
API
var inflate = require('inflation')
inflate(stream, options)
Returns a stream that emits inflated data from the given stream.
Options:
encoding
- The encoding of the stream (gzip
ordeflate
). If not given, will look instream.headers['content-encoding']
.
Example
var inflate = require('inflation')
var raw = require('raw-body')
http.createServer(function (req, res) {
raw(inflate(req), 'utf-8', function (err, string) {
console.dir(string)
})
})