blob: 1488917e03e73ecba91180066e95b3c6a862254f (
plain) (
tree)
|
|
#!/usr/bin/env node
require('unit-http').createServer(function (req, res) {
let body = '';
req.on('data', chunk => {
body += chunk.toString();
});
req.on('end', () => {
res.writeHead(200, {'Content-Length': Buffer.byteLength(body)})
.end(body);
});
}).listen(7080);
|