2
0
mirror of https://github.com/tenrok/axios.git synced 2026-05-15 11:59:42 +03:00
Files
axios/examples/upload/server.js
T
2015-04-08 13:24:43 -06:00

14 lines
231 B
JavaScript

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();
});
};