I have a question about the progress of sending with Node.js \'request\'. I have a Node.js application that acts as a proxy, actually forwarding a body to another server. I
Solution for first part was in r.req.connectin.bytesWritten
r.req.connectin.bytesWritten
var r = request(requestOptions, function (error, response, body) { clearInterval(q); ... }); var q = setInterval(function () { console.log("Uploaded: " + r.req.connection.bytesWritten); }, 250);