blob: 6e3fb9a9e42d5d523ba953f6a5418e1cc7fb8be6 (
plain) (
blame)
1
2
3
4
5
6
7
|
#!/usr/bin/env node
require('unit-http').createServer(function (req, res) {
res.write('blah');
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end();
}).listen(7080);
|