0.1.0 • Published 10 years ago

flowhttp-decoder v0.1.0

Weekly downloads
3
License
-
Repository
github
Last release
10 years ago

flowHttp-decoder

A flowHttp extension used for decoding gzip og deflate encoded HTTP responses.

build
status

Install

npm install flowhttp-decoder

Usage

This module is intended to be used with the flowHttp module.

Use this module to create a Decoder stream. If piped data from a flowHttp request, it will detect if the response is encoded using either gzip og deflate and automatically decode it. If the body isn't encoded using one of these encodings, it's just passed through the stream without any modifications.

var flowHttp = require('flowhttp');
var Decoder = require('flowhttp-decoder');

flowHttp('http://example.com')
  .pipe(new Decoder())
  .pipe(process.stdout);

License

MIT