summaryrefslogtreecommitdiffhomepage
path: root/test/node/write_buffer/app.js
blob: 72e9c600816e016555f5264664cecc2004412a46 (plain) (blame)
1
2
3
4
5

require('http').createServer(function (req, res) {
    res.writeHead(200, {'Content-Type': 'text/plain'})
       .end(Buffer.from('buffer', 'utf8'));
}).listen(7080);