What are your favorite open source Elixir projects?

I’d love to know where you all are contributing, as well as bookmark some quality and well-structured Elixir apps for future reference as I learn.

4 Likes

Some of my favorites are:

  • boundary: manage and restrain cross-module dependencies
  • mox: Mocks and explicit contracts for testing
  • scenic: Render graphics with Elixir
  • oban: Job runner that utilizes Postgres for persistance

And I have at least one PR in each of them :blush:

7 Likes

Nice, looking through them now! :+1:

I’m quite proud of ex_dhcp, and trivial, and I think they are good examples of how to structure and test otp compliant services over a low level protocol (udp):

https://hexdocs.pm/ex_dhcp/ExDhcp.html
https://hexdocs.pm/trivial/Trivial.html

Both are highly commented with references to their respective rfcs.

1 Like