I send a POST WebRequest from C# along with a JSON object data and want to receive it in a Node.js server like this:
WebRequest
var express = require(\'exp
The request has to be sent with: content-type: "application/json; charset=utf-8"
Otherwise the bodyParser kicks your object as a key in another object :)