Skip to content

Instantly share code, notes, and snippets.

@ianaya89
Created December 20, 2016 02:46
Show Gist options
  • Save ianaya89/a20c868c98a23829ccb60203916d636f to your computer and use it in GitHub Desktop.
Save ianaya89/a20c868c98a23829ccb60203916d636f to your computer and use it in GitHub Desktop.
app.get('/example',
(req, res, next) => {
console.log('Handler 1');
next();
}, (req, res) => {
res.send('Handler 2');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment