I\'m trying to leverage the node-request module, but the documentation isn\'t that great. If I make a request to a valid resource and pipe it to a Writable Stream, everythin
i wrote request :)
you might want to try this
var r = request(url) r.on('response', function (resp) { resp.headers resp.statusCode r.pipe(new WritableStream()) })