Lines Matching refs:res
2 var server = http.createServer(function (req, res) {
39 res.writeHead(parseInt(qs), header, headers);
40 res.end(state);
48 res.writeHead(200, {'Content-Type': 'text/plain'});
49 res.end(body);
52 res.writeHead(404, {'Content-Type': 'text/plain'});
53 res.end('Not Found');
72 res.writeHead(200, {'Content-Type': 'text/plain'});
73 res.end(body);
78 res.writeHead(200, {'Content-Type': 'text/plain'});
79 res.end(url[1]);
82 res.writeHead(200, {'Content-Type': 'text/plain'});
83 res.end('Hello World\n');