All pastes #2110493 Raw Edit

Untitled

public javascript v1 · immutable
#2110493 ·published 2012-02-06 23:55 UTC
rendered paste body
module.exports = function(app){  var routes = get_routes();     app.get('/', routes.index);    app.get('/about', routes.about);}function get_routes() {          var routes = {}                routes.index = function(req, res) {    res.render('index', { title: 'Express' })  }   routes.about = function(req, res) {    res.render('about', { title: 'About Express' })  }   return routes;               }