Elixir HTTP Client

Open-source Elixir projects categorized as HTTP Client

Top 8 Elixir HTTP Client Projects

  • httpoison

    Yet Another HTTP client for Elixir powered by hackney

  • tesla

    The flexible HTTP client library for Elixir, with support for middleware and multiple adapters.

  • Project mention: Elixir for Cynical Curmudgeons | news.ycombinator.com | 2023-08-03

    I haven’t used commanded, exmachina, or ash:

    - Tesla has a mode which can be used completely without macros, and I am increasingly encouraging that it be the only way that it is used. So does the author (as of 2020): https://github.com/elixir-tesla/tesla/issues/367#issuecommen...

    There is also `req` mentioned in a recent post as an alternative (it looks good, but I am still playing with it to see if it is a suitable replacement for Tesla in all cases).

    - Absinthe is something of a compiler itself, because it has to strictly define things the way that is specified in the GraphQL spec. You can now import an SDL file, but you still need to hook resolvers and middleware into it. Honestly, I don’t think that the schema definitions in JS/TS are much better for GraphQL in terms of readability.

    Being heavily macro-based means that there are sharp edges that are harder to work around when you want to add your own macros for code reuse purposes. That said, aside from the schema definition, Absinthe is entirely usable without macros. Within the schema definition, Absinthe isn’t making anything up, it’s using the same basic definitions that the GraphQL spec do, adapted for Elixir syntax.

    Exmachina didn’t interest me because I don’t think much of factory_bot (which used to be called factory_girl), as I saw it abused far more than used well (IMO, it’s impossible to use correctly). Ash…looks like an interesting experiment, but I don’t know that there’s a lot of pick-up with it compared to Phoenix. And I have yet to find a use for CQRS/ES, so there’s no reason for me to play with commanded. I certainly wouldn’t consider any of these three to be "major" players in Elixir. Tesla and Absinthe? Yes.

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

    WorkOS logo
  • mint

    Functional HTTP client for Elixir with support for HTTP/1 and HTTP/2 🌱 (by elixir-mint)

  • Project mention: Unpacking Elixir: Resilience | news.ycombinator.com | 2023-09-24

    One example is HTTP libraries.

    For instance, take Mint (https://github.com/elixir-mint/mint):

    > Mint is different from most Erlang and Elixir HTTP clients because it provides a process-less architecture.

    Mint is a low-level library which doesn't make attempt to manage processes (including HTTP pooling).

    In contrast, Finch (which builds on top of Mint) includes pool management:

    https://github.com/elixir-mint/mint#connection-management-an...

    It can take someone a bit off guard when they realise that the library they use provide a "default pool" they were not aware of, and that it can become a bottleneck etc.

  • finch

    Elixir HTTP client, focused on performance (by sneako)

  • Project mention: How to implement a disk cache plugin for Elixir's Req HTTP client? | news.ycombinator.com | 2023-08-17
  • req

    Req is a batteries-included HTTP client for Elixir.

  • Project mention: How to implement a disk cache plugin for Elixir's Req HTTP client? | news.ycombinator.com | 2023-08-17

    > no error checking at all (I assume it just panics or exception?)

    In Elixir, bang functions per convention will raise on error. `get/2` will return error tuples allowing you to handle errors. In fact, get!/2 just calls get/2 and raises for you[^1].

    > no mention of JSON at all

    Req is the most "batteries included" Elixir HTTP lib out there. I can't speak for Wojtek, but I believe the goal was to make Req extremely easy to use in scripting or things like LiveBook without having to do much work. That being said, the automatic decoding is mentioned in the readme[^2] and the docs[^3].

    > if "body" is JSON, how do you even get the raw body, or can you?

    Per the docs[^3], you can either skip with a `:raw` option, or just build your own request using only the steps you want.

    > just seems over engineered/over fitted whatever you want to call it.

    Fair, but again, this library is designed to be on that end of the spectrum. There are plenty of other libraries further down the stack that you can use. I am partial to Finch[^4], upon which Req is built.

    To address the sibling comment about "Let it Crash", the language allows you to easily recover from crashes, but that is for resiliency, not error handling. In practice you would use the non-bang get/2, pattern match on the response, handle any errors, perhaps use Kernel.get_in/2 to safely traverse the map, etc. The example provided by the author is not "production ready".

    [^1]: https://github.com/wojtekmach/req/blob/v0.3.11/lib/req.ex#L3...

  • httpotion

    [Deprecated because ibrowse is not maintained] HTTP client for Elixir (use Tesla please)

  • Maxwell

    Maxwell is an HTTP client which support for middleware and multiple adapters. (by zhongwencool)

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • HttpBuilder

    A DSL for building chainable, composable HTTP requests. API structure taken from the lovely elm-http-builder

NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020).

Elixir HTTP Client related posts

Index

What are some of the best open-source HTTP Client projects in Elixir? This list will help you:

Project Stars
1 httpoison 2,215
2 tesla 1,954
3 mint 1,328
4 finch 1,205
5 req 838
6 httpotion 725
7 Maxwell 110
8 HttpBuilder 15

Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com