Some questions about HTTP and web frameworks #334
Unanswered
octavezero
asked this question in
Q&A
Replies: 1 comment 2 replies
-
|
There's a http implementation here: https://github.com/monoio-rs/monoio-http |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, I am making a full stack web framework (think Laravel, Django, Rails) with monoio as its async core. I have the basics working with my own basic http 1.1 parser, but Im interested to know what the recommended way is for http parsing with monoio, to compare notes and see if there's a better approach than what I have.
I don't need the more advanced http2 or any other such features, since my aim is to make a framework that will always sit behind a reverse proxy of some sort. So I only need enough http parsing for an app server.
There is
monoio-http, but I don't see much docs around it (I'm open to reading the code and working with if that is a good/recommended way to work with http1.1). I'm of course open to contributing code to any existing or planned http features inmonoio-httpas well if that's the recommended way.Beta Was this translation helpful? Give feedback.
All reactions