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