summaryrefslogtreecommitdiffhomepage
path: root/test/node/write_buffer/app.js
blob: 24585ef2d5ebc05c1757dab2e151a11db33c2f3f (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(8080);