I\'m making a HTTP request and listen for \"data\":
response.on(\"data\", function (data) { ... })
The problem is that the response is chun
request.on('response', function (response) { var body = ''; response.on('data', function (chunk) { body += chunk; }); response.on('end', function () { console.log('BODY: ' + body); }); }); request.end();