1 2 3 4 5 6
require('http').createServer(function (req, res) { res.writeHead(200, {}); res.setHeader('@$', 'test'); res.end(); }).listen(8080);