anyproxy/postReceiver.js
2014-08-21 17:40:02 +08:00

19 lines
252 B
JavaScript

var http= require("http");
var s = http.createServer(function(req,res) {
var total = "";
req.on("data",function(chunk){
total += chunk;
});
req.on("end",function(){
console.log(total);
});
console.log(req);
// body...
});
s.listen(80);