In node I can pipe to a file like this:
let outStream = fs.createWriteStream('./unzipped.html')
req.pipe(zlib.createGunzip()).pipe(outStream)
and read it back later with:
let data = fs.readFileSync('./unzipped.html')
But I don't want to create a file. What kind of stream am I looking for?