• It's passed at the end of the request like this:

    var options = {
    ...
    }
    var data = JSON.stringify({"key":"value", ...});
    require("http").request(options, function(res)  {
       ...
    }).end(data);
    
About

Avatar for Ollie @Ollie started