//////////////////////////////////////////// This example demonstrates what happends// when you use the built-in JSON parser.//////////////////////////////////////////varfs=require('fs'),stream=require('stream'),needle=require('./../');varurl='http://ip.jsontest.com/',resp=needle.get(url,{parse:true});resp.on('readable',function(obj){varchunk;while(chunk=this.read()){console.log('root = ',chunk);}});resp.on('done',function(){console.log('Done.');});