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