blob: a7623523d01a1ee42b8a2b9154dd69aae907f9ef (
plain) (
tree)
|
|
#!/usr/bin/env node
require('unit-http').createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'})
.end(new Buffer([0x62, 0x75, 0x66, 0x66, 0x65, 0x72]));
}).listen(7080);
|