summaryrefslogtreecommitdiffhomepage
path: root/test/node/options/app.js
blob: bc5380803fae5923070093dee7625026ab6c4740 (plain) (blame)
1
2
3
4
require('http').createServer({}, function (req, res) {
    res.writeHead(200, {'Content-Length': 12, 'Content-Type': 'text/plain'})
       .end('Hello World\n');
}).listen(8080);