summaryrefslogtreecommitdiffhomepage
path: root/test/node/write_buffer/app.js
blob: f41de2a14ea4ff63a5c791274873a753f1a4b50d (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'});
    res.end(new Buffer([0x62, 0x75, 0x66, 0x66, 0x65, 0x72]));
}).listen(7080);