Repository URL to install this package:
|
Version:
1.2.9 ▾
|
"use strict";
module.exports = function (req, res) {
var data = '';
req.on('data', function (chunk) {
data += chunk;
});
req.on('end', function () {
console.log('POST data received');
res.writeHead(200, {
'Content-Type': 'text/json'
});
res.write(JSON.stringify(data));
res.end();
});
};