summaryrefslogtreecommitdiffhomepage
path: root/test/node/loader/unit_http/app.js
blob: 9172e44fb45d2a6e55df28f9f03712db5d288363 (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(7080);