Main repo: https://github.com/huned/nodejs-async-gzip-gunzip
Uncomplicated async gzip and gunzip functions for node.js.
Features:
- uncomplicated
- no dependencies or bloat
- familiar interface
npm install async-gzip-gunzip
const asyncGunzip = require('async-gzip-gunzip').asyncGunzip
const gunzipped = await asyncGunzip(gzippedBuffer)
const asyncGzip = require('async-gzip-gunzip').asyncGzip
const gzipped = await asyncGzip(gunzippedBuffer)
MIT