gunzip-stream

1.0.1 • Public • Published

gunzip-stream npm version Build Status

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('http');
const {createGunzip} = require('gunzip-stream');
 
fs.createReadStream('/path/to/file.gz.or.not')
  .pipe(createGunzip())
  .pipe(process.stdout)

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i gunzip-stream

Weekly Downloads

3,411

Version

1.0.1

License

MIT

Last publish

Collaborators

  • jdesboeufs