summaryrefslogblamecommitdiffhomepage
path: root/test/node/mirror/app.js
blob: 1488917e03e73ecba91180066e95b3c6a862254f (plain) (tree)
1
2
3
4
5
6
7
8
9
10







                                                       

                                                                       

                
#!/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);