summaryrefslogblamecommitdiffhomepage
path: root/test/node/write_multiple/app.js
blob: e9c51ae04208046781a3d746f1853b34731e93ae (plain) (tree)
1
2
3
4
5
6
7
 
                                                  




                                                                             

require('http').createServer(function (req, res) {
    res.writeHead(200, {'Content-Type': 'text/plain', 'Content-Length': 14});
    res.write('write');
    res.write('write2');
    res.end('end');
}).listen(7080);