Files
nginx-unit/test/node/write_callback/app.js
2018-10-25 15:43:48 +03:00

11 lines
263 B
JavaScript
Executable File

#!/usr/bin/env node
require('unit-http').createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
var a = 'blah';
res.write('hello', 'utf8', function() {
a = 'world';
});
res.end(a);
}).listen(7080);