Automatically unzip an HTTP stream.
var inflate = require('inflation')
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']
.brotli
-BrotliOptions
to use for Brotli decompression
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)
})
})
jonathanong |
dougwilson |
fengmk2 |
bminer |
ide |
---|
This project follows the git-contributor spec, auto updated at Sat Oct 14 2023 13:02:29 GMT+0800
.