I got curl: (18) transfer closed with outstanding read data remaining
problem in following code. console.log is working fine but I can’t call url in browser and curl.
res.writeHead(200, {'Content-Type': 'text/plain'});
output=JSON.parse(output);
console.log(output);
res.end(output);
Because JSON.parse return the Object. res.end can’t write object.
https://github.com/joyent/node/issues/1241