summaryrefslogtreecommitdiffhomepage
path: root/test/node/write_return/app.js
blob: 345b6c4b21d21279887c6b545337a29d82216b7f (plain) (blame)
1
2
3
4
5

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