summaryrefslogtreecommitdiffhomepage
path: root/test/node/status_message/app.js
blob: 53eea5c72f38ef339872b1edf1bf9d5a7abda2f3 (plain) (blame)
1
2
3
4

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