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







                                                       
#!/usr/bin/env node

require('unit-http').createServer(function (req, res) {
    res.setHeader('DATE', ['date1', 'date2']);
    res.setHeader('X-Header', 'blah');
    res.setHeader('X-Names', res.getHeaderNames());
    res.end();
}).listen(7080);