Skip to content

Instantly share code, notes, and snippets.

@woowa
Created May 29, 2017 07:50
Show Gist options
  • Save woowa/ab6de3e704e59b59478c5fa427eea264 to your computer and use it in GitHub Desktop.
Save woowa/ab6de3e704e59b59478c5fa427eea264 to your computer and use it in GitHub Desktop.
function SampleMiddleware(options) {
this.mwtype = 'router';
this.features = ['params', 'query'];
this.before = function(feature) {
console.log(feature.params);
console.log(feature.query);
console.log(options.testVal);
}
}
app.set(SampleMiddleware, { testVal: 'val' });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment