Skip to content

Instantly share code, notes, and snippets.

@dustinc
Created August 7, 2012 19:16
Show Gist options
  • Save dustinc/3288530 to your computer and use it in GitHub Desktop.
Save dustinc/3288530 to your computer and use it in GitHub Desktop.
controller.index = function(req, res, next) {
db.users.find({}, function(err, docs) {
console.log(err + ' ' + docs);
res.render('user/index', {users: docs});
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment