Repository URL to install this package:
|
Version:
1.2.7 ▾
|
"use strict";
module.exports = function (req, res) {
var data = '';
req.on('data', function (chunk) {
data += chunk;
});
req.on('end', function () {
console.log('File uploaded');
res.writeHead(200);
res.end();
});
};