/gunzip-stream

Gunzip a stream if needed

Primary LanguageJavaScriptMIT LicenseMIT

gunzip-stream npm version

Gunzip a stream if needed

Transform stream which acts as zlib.Gunzip if input is gzipped. Fallback otherwise to a simple PassThrough stream.

Install

$ npm install gunzip-stream

Usage

const fs = require('fs');
const {createGunzip} = require('gunzip-stream')

fs.createReadStream('/path/to/file.gz.or.not')
  .pipe(createGunzip())
  .pipe(process.stdout)

License

MIT