Closed bnlambert closed 7 years ago
Crow doesn't support DB access. You need to use another library for it. If you want to do db jobs in type-safe way, you should check https://github.com/rbock/sqlpp11.
Also crow is just a web server framework, it lacks an API for requesting another web server.
Any thoughts on how handle middleware in Crow? the documentation seems to be lacking that at the moment. The given link https://github.com/ipkn/crow/issues/239#issuecomment-327389344, is not available.
middleware
is a plug-in system for crow
that runs before or after the user handler. You can see the example implementation in middleware.h (CookieParser).
Please share a link, I am unable to find it in the branch.
I found a link here https://github.com/ipkn/crow/blob/master/include/crow/middleware.h . Thanks
Crow is a great project. I wish to know how database connection and operations are in Crow apps. Is it done asynchronously or using an ORM? I need recommendations and examples.
Also I will to know if there are tools to document REST APIs in Crow. How can we communicate with third party API in Crow app.
The section on middleware is still blank, How can we secure REST APIs in Crow?
Thanks