blob: 7820c474579971859d5cb96c30bfaac2853a44c6 (
plain) (
blame)
1
2
3
4
5
6
|
#!/usr/bin/env node
require('unit-http').createServer(function (req, res) {
res.writeHead(200, {'Content-Length': 12, 'Content-Type': 'text/plain'})
.end('Hello World\n');
}).listen(7080);
|