Skip to content

Instantly share code, notes, and snippets.

@rezoner
Created March 7, 2013 20:20
Show Gist options
  • Save rezoner/5111476 to your computer and use it in GitHub Desktop.
Save rezoner/5111476 to your computer and use it in GitHub Desktop.
Page flow controllers examples
/* example Kohana/CodeIgniter like controller */
module.exports = {
default: function(args, callback) {
},
article: function(args, callback) {
},
gallery: function(args, callback) {
}
}
/* minimalistic controller */
module.exports = function(args, callback) {
switch(args[0]) {
case article:
break;
case gallery:
break;
default:
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment