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