I\'m making a HTTP request using Node\'s http module, but on data, the chunk returned doesn\'t seem to content the full request response.
http
data
you should also listen for the 'end' event
req.on('response', function (response) { var data = ""; response.on('data', function (chunk) { console.log(chunk); data += chunk; }); response.on('end', function(){ callback(data); }) });