Skip to content

Instantly share code, notes, and snippets.

@adohe-zz
Created July 23, 2014 16:37
Show Gist options
  • Select an option

  • Save adohe-zz/05083cd6b1c75afd2275 to your computer and use it in GitHub Desktop.

Select an option

Save adohe-zz/05083cd6b1c75afd2275 to your computer and use it in GitHub Desktop.
a typical connect middleware writing style
/**
* A typical connect middleware
*/
module.exports = function dist (/* options */) {
// stuff
return function (req, res, next) {
// stuff
next();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment