summaryrefslogtreecommitdiffhomepage
path: root/test/node/write_return/app.js
blob: d0b3d850266cbb161a0386cb858a3d453b4b7be6 (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(8080);