summaryrefslogtreecommitdiffhomepage
path: root/test/node/write_return/app.js
blob: 3ae967c6f8843f9512dc9c50242c04ae5c6f70f7 (plain) (blame)
1
2
3
4
5
6
#!/usr/bin/env node

require('unit-http').createServer(function (req, res) {
    res.writeHead(200, {'Content-Type': 'text/plain'});
    res.end(res.write('body').toString());
}).listen(7080);