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

require('http').createServer(function (req, res) {
    res.writeHead(200, {'Content-Length': 12, 'Content-Type': 'text/plain'})
       .end('Hello World\n');
}).listen(8080);