How should querying a JSON API be done best in node.js? Is there a module that will simplify this?
I am trying to get the City location from http://maps.googleapis.com/maps/api/geocode/json?latlng=40.714224,-73.961452
I would use jQuery to query the API in client-side because it vastly simplifies things. Is there something similar for node.js?
http.requestto the URL?