Starting from Node.js 15.0.0 the chunk parameter of the response.write() can be a Uint8Array. This closes #870 issue on GitHub.
5 lines
204 B
JavaScript
5 lines
204 B
JavaScript
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);
|