summaryrefslogtreecommitdiff
path: root/node_modules/express/testing/foo/routes/index.js
blob: 0b2205c13c76f42ba2759e53eb8086af872d6238 (plain)
1
2
3
4
5
6
7
8
9
10
/*
 * GET home page.
 */

exports.index = function(req, res){
  res.writeHead(200);
  req.doesnotexist();
  // res.render('index', { title: 'Express' })
};