summaryrefslogtreecommitdiffhomepage
path: root/test/node/write_array/app.js
blob: b7abb3fc69be5b55a0a8d57d5876d632882f09d8 (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(7080);