blob: b7abb3fc69be5b55a0a8d57d5876d632882f09d8 (
plain) (
tree)
|
|
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);
|