I\'m using the promis module to return my json data from the request module, but every time i run it, it gives me this.
Promise { _45: 0, _81: 0, _65: null,
Use request-promise:
var rp = require('request-promise'); rp('http://www.google.com') .then(function (response) { // resolved }) .catch(function (err) { // rejected });