Skip to content

Instantly share code, notes, and snippets.

@ric03uec
Created April 1, 2012 09:24
Show Gist options
  • Save ric03uec/2274079 to your computer and use it in GitHub Desktop.
Save ric03uec/2274079 to your computer and use it in GitHub Desktop.
dynamic helpers
app.dynamicHelpers({
session : function(req, res){
return req.session;
},
someInfo : function(req, res){
//getting, setting, and manipulation
return someAwesomeInfo;
},
.... some more dynamic helpers
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment