Skip to content

Instantly share code, notes, and snippets.

@ptasker
Last active August 29, 2015 14:20
Show Gist options
  • Save ptasker/482629947dcfe2005acb to your computer and use it in GitHub Desktop.
Save ptasker/482629947dcfe2005acb to your computer and use it in GitHub Desktop.
NodeJS - Simple callback
mymodel.findOne({
'user': this.req.user,
}, function(err, data){
if (err) return next(err);
//yay! do something simple with data
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment