httpx icon indicating copy to clipboard operation
httpx copied to clipboard

Cross platform web server for Nim.

Results 10 httpx issues
Sort by recently updated
recently updated
newest added

Is there any minimalistic and simple server implementation similar to this extension in functionality, but using httpx? https://marketplace.visualstudio.com/items?itemName=yandeu.five-server I know about `nimhttpd`, but the problem is that it doesn't update...

I'm getting a similar problem to the OP here: https://github.com/planety/prologue/issues/227 - it only happens when using httpx as the prologue back end (asynchttpserver is fine via prologue's `-d:usestd` flag). I...

Implements: - Async streaming I/O when httpxUseStreams is true - Exposes request ID - Exposes parsed request content length TODO In another PR: - Limit request header sizes to 8kib...

One thing that's been a consistent issue across almost all Nim webservers (besides Chronos's **slow** server) is that request bodies and responses can't be streamed. There's a module in the...

In some circumstances, the socket needs to be bound prior to calling the web server. This is necessary for example when the socket in inherited from the parent process and...

Is it possible to create https server?

feature

server only receive GET request with empty body. With some string in body it is always pending

https://github.com/xflywind/httpx/blob/7e8ca92efe921fbe2aa363ffafe3c443cc9b73fa/src/httpx.nim#L443-L444 When `events[i].events` contains neither `Read` nor `Write`, an `AssertionDefect` is thrown. However, as per code lines in [ioselectors](https://github.com/xflywind/ioselectors): https://github.com/xflywind/ioselectors/blob/6fcdbf3fddeb239885cd8bce15a0ab63c00647c0/src/ioselectors/ioselectors_wepoll.nim#L264-L270 only `EPOLLOUT` and `EPOLLIN` will be recorded in `rkey.events`. There...

https://github.com/dom96/httpbeast/commit/29e5807d4b37243b20cbb45bcb2886168ac87f83 https://github.com/dom96/httpbeast/commit/37764735f009691ac3c7bff08c149c5474417639

help wanted

To be able to handle large uploads, it would be helpful to have a setting such that sets the limit of a request body to a certain Content-Length (lets say...