summaryrefslogtreecommitdiffhomepage
path: root/test/node/write_before_write_head/app.js
blob: 2293111a8c7094c9ed015f428a370f51735e0620 (plain) (blame)
1
2
3
4
5

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