You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
454 B
14 lines
454 B
var http = require("http");
|
|
exports.start = function () {
|
|
http.createServer(function (request, response) {
|
|
let body = [];
|
|
request.on('data', (chunk) => {
|
|
body.push(chunk);
|
|
}).on('end', () => {
|
|
body = Buffer.concat(body).toString();
|
|
// at this point, `body` has the entire request body stored in it as a string
|
|
|
|
console.log("body is " + body);
|
|
});
|
|
}).listen(37188);
|
|
}
|