I\'m making a HTTP request and listen for \"data\":
response.on(\"data\", function (data) { ... })
The problem is that the response is chun
The reason it's messed up is because you need to call JSON.parse(data.toString()). Data is a buffer so you can't just parse it directly.