mint icon indicating copy to clipboard operation
mint copied to clipboard

Functional HTTP client for Elixir with support for HTTP/1 and HTTP/2 🌱

Results 14 mint issues
Sort by recently updated
recently updated
newest added

Reading: https://hexdocs.pm/mint/Mint.HTTP.html#connect/4-proxying A minimal example, using [mitmproxy](https://mitmproxy.org/): ```elixir proxy_details = {:http, "127.0.0.1", 9055, []} {:ok, conn} = Mint.HTTP.connect(:http, "example.com", 80, proxy: proxy_details) {:ok, conn, request_ref} = Mint.HTTP.request(conn, "GET", "/", [],...

Kind:Bug

I'm currently trying to implement a HTTP-based database driver using mint. One of the features that the DB supports is "progress headers". The headers are continually sent to the client...

Kind:Enhancement

Unfortunately we do not have a repro or hypothesis available, but wanted to get your help either fixing the problem in Mint or advising us on how to avoid/handle it....

Kind:Bug

I'm looking to implement http request tracing in elixir (inspired by this in GO: https://pkg.go.dev/net/http/httptrace). This is not ready but before investing more time in this I wanted to see...