Skip to content

Instantly share code, notes, and snippets.

View JustinSHong's full-sized avatar

Justin Soon Hong JustinSHong

  • Zipwhip
  • Seattle, Wa
View GitHub Profile
@luishrd
luishrd / index.js
Last active June 1, 2018 16:50
CS9 Building APIs Notes
// inside the middleware folder
module.exports = {
greeter,
logger,
errorHandler,
};
function greeter(name) {
return function(req, res, next) {