Skip to content

Instantly share code, notes, and snippets.

@clarkio
Last active August 11, 2017 19:37
Show Gist options
  • Save clarkio/36efe5ef3b2c4ad864c04b32ba68edb4 to your computer and use it in GitHub Desktop.
Save clarkio/36efe5ef3b2c4ad864c04b32ba68edb4 to your computer and use it in GitHub Desktop.
Restify middleware next() blog post code snippets - after changes
server.get('/secure/route',
// My short-circuiting middleware "module"
function checkAuthorization (req, res, next) {
res.send(401, 'Unauthorized');
return next(false);
},
// My route implementation
function routeAction (req, res, next) {
res.send(200, { data: 'secure data' });
return next();
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment