Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

middleware #23

Open
bredele opened this issue Aug 15, 2017 · 1 comment
Open

middleware #23

bredele opened this issue Aug 15, 2017 · 1 comment

Comments

@bredele
Copy link
Contributor

bredele commented Aug 15, 2017

We should support middleware a bit like express.

const app = service()

app.get('/hello', middleware1, middleware2, (query, data) => {
  return 'something'
})
@bredele
Copy link
Contributor Author

bredele commented Aug 15, 2017

We also should be able to do that in the literal version:

const api = service({
  get: [
    middleware1,
    middleware2,
    callback
  ]
})

api.get('/')

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant