I am attempting to retrieve a file.csv.gz using request.js, and decompress it, before parsing it and processing.
I know I want my code to look like this
response
.pipe(zlib.createGunzip())
.pipe(split())
.pipe(process())
however, I am struggling to get my response object in the correct format to be piped. I am currently attempting to stream the response by doing;
const request = require('request');
const headers = {
'accept-encoding':'gzip'
}
module.exports.getCSV = (url) => {
return request({url, headers, gzip:true});
}
I am receiving errors which imply that I am attempting to decompress an incomplete object.
I am also thinking that it is perhaps not possible to do what I want to achieve, and instead I will need to fully download the file, before attempting to parse it for processing
receive.js
send.js