Older/ReSharper101NodeJsExpress/routes/index.js (10 lines of code) (raw):
/*
* GET home page.
*/
exports.index = function (req, res) {
res.render('index', { title: 'Express', year: new Date().getFullYear() });
};
exports.about = function (req, res) {
res.render('about', { title: 'About', year: new Date().getFullYear(), message: 'Your application description page' });
};
exports.contact = function (req, res) {
res.render('contact', { title: 'Contact', year: new Date().getFullYear(), message: 'Your contact page' });
};