Trying to get data from a POST obj, should be simple enough. Using the REQUEST module https://github.com/request/request
Should be super simple, missing something though as all I return is an empty object in my console.
request.post('http://jsonplaceholder.typicode.com/posts/1', function(error, response, body){
    if(!error && response.statusCode == 200){
      console.log(body);
    }
});
 
     
    