summaryrefslogtreecommitdiffhomepage
path: root/test/node/write_array/app.js
blob: 761e85377851601eeab9f9b85bcc09f51ef9136c (plain) (blame)
1
2
3
4
require('http').createServer(function (req, res) {
    res.writeHead(200, {'Content-Length': 5, 'Content-Type': 'text/plain'})
        .end(new Uint8Array(Buffer.from('array', 'utf8')));
}).listen(8080);