blob: 506e8613f042696c14d33f5b8e4459bb4713cb4b (
plain) (
blame)
1
2
3
4
5
|
require('http').createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'})
.end(new Buffer([0x62, 0x75, 0x66, 0x66, 0x65, 0x72]));
}).listen(7080);
|