zio-http icon indicating copy to clipboard operation
zio-http copied to clipboard

A next-generation Scala framework for building scalable, correct, and efficient HTTP clients and servers

Results 215 zio-http issues
Sort by recently updated
recently updated
newest added

Cookie parsing currently involves a lot of interim memory allocations. Create a PR that improves the performance of cookie parsing by reducing such allocations.

When serving static files, it would be nice if the `content-type` header was automatically filled for common file types (ex: `.js` files get `application/javascript`, etc). http4s does this here: https://github.com/http4s/http4s/blob/main/core/src/main/scala/org/http4s/StaticFile.scala#L240...

enhancement
good first issue

This should be straightforward. Some documentation getting started material https://www.baeldung.com/netty-http2

enhancement

This is a clean up pull request for Connection Header code.

**Is your feature request related to a problem? Please describe.** The header inputs, which one can construct using `zio.http.api.In`, and which are defined in `/src/main/scala/zio/http/api/HeaderInputs`, currently produce (/accept) a `String`...

enhancement

This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more. --- ### ⚠ Dependency Lookup Warnings ⚠ - Renovate failed to look up the...

It would be nice to have the ability to modify the path without needing to know the hostname . currently the setPath method will inadvertently override the host with the...

enhancement

**Is your feature request related to a problem? Please describe.** When using `Middleware.addHeader` function it is unclear where the header will be added: to request or to response. Without finding...

enhancement