|
|
1 year ago | |
|---|---|---|
| .. | ||
| node_modules | 1 year ago | |
| .travis.yml | 1 year ago | |
| LICENSE | 1 year ago | |
| README.md | 1 year ago | |
| bin.js | 1 year ago | |
| index.js | 1 year ago | |
| package.json | 1 year ago | |
| test.js | 1 year ago | |
Transform stream that gunzips its input if it is gzipped and just echoes it if not.
npm install gunzip-maybe
Simply pipe a gzipped (or not gzipped) stream to gunzip([maxRecursion = 3]) and read the unzipped content.
maxRecursion protects the unzip mechanism from an infinite recursion in case of a malicious archive.
// this will gunzip gzippedStream
gzippedStream.pipe(gunzip()).pipe(process.stdout);
// this will just echo plainTextStream
plainTextStream.pipe(gunzip()).pipe(process.stdout);
npm install -g gunzip-maybe
gunzip-maybe --help # will print out usage
MIT