tio407

tio407

New programmer here. What is the best Elixir codebase to study?

One of the tips I got from a programmer I look up to is that they studied a codebase and reverse-engineered how they made each decision.

In your opinion, what is the best Elixir codebase to study and why?

Most Liked

Marcus

Marcus

For the essentials you can take a look in to the Elixir Github Repo.

Or take a look here: Elixir Examples - Feedback Wanted

Or, if you also interested in Phoenix:
Are Hex.pm and Constable code bases considered good practice examples for building applications? .
Phoenix (wiki) section “Example Applications”

Good example project using Ecto.

chouzar

chouzar

For a full featured app there’s ExVenture - Text based MMORPG I just heard about it thanks to the Elixir Wizards - Betweenisode.

maz

maz

Take a look at Captain Fact which is an elixir umbrella app in production.

Last Post!

chouzar

chouzar

I will go slightly out of topic here. If you’re just starting out I would suggest that you go for the documentation; Elixir docs work like a really well explained guide from which then you can branch your own patterns.

The Docs

Just in case you haven’t tried the “embedded docs” try to use the h function in iex you can “query” any module or function in your project:

shell$ iex

Interactive Elixir (1.10.2) - press Ctrl+C to exit (type h() ENTER for help)
iex(1)> h Enum

                                      Enum                                      

Provides a set of algorithms to work with enumerables.

Supervision Trees

To understand how a Phoenix (or any) application is structured I would suggest that you understand how “Supervised Applications” work. You can quickly create one with:

$ mix new game_of_life --sup

The --sup option will generate an additional application.ex file. Then go and read the docs for GenServer, Supervisor, Application (which you can also check with h Genserver at iex).

Phoenix Generators

These generators are really well thought, for a very classic MVC style try:

shell$ mix help phx.gen.html
shell$ mix help phx.gen.json

Run a generator and try to follow how all your web directory is intertwined; you can start with the the endpoint.ex or your router.ex then go to specific views or controllers; a lot might seem hidden or “magical” because Phoenix leans a lot of boilerplate into macros, but the project structure gets to become very simple with the pass of time :slight_smile:

Be sure to check the docs on Phoenix and Plug.

Where Next?

Popular in Discussions Top

AstonJ
If a newbie asked you about Phoenix Contexts, how would you explain the basics to them? Feel free to be as concise or in-depth as you li...
New
PragTob
Hey everyone, this has been brewing in my head some time and it came up again while reading Adopting Elixir. GenServers, supervisors et...
New
boundedvariable
I am going through the kafka architecture. All the features what the kafka is providing are already in Erlang. I would like hear your opi...
New
lorenzo
Hey everone! I created a prototype for my app using Nodejs for the api. But the framework I chose wasnt great (in general theresnt any g...
New
eteeselink
Hi all, In the last days, two things happened: A blog post titled “They might never tell you it’s broken” made the rounds. It’s about ...
New
AngeloChecked
What learn first? Rust or Elixir Hi Elixir community! I’m here because i want learn a new language. I’m a junior developer and mainly i ...
New
shishini
I think this twitter post and youtube video didn’t get as much attention as I hoped I am still new to Elixir, so can’t really judge ...
New

Other popular topics Top

KronicDeth
Elixir plugin for JetBrain’s IntelliJ Platform (including Rubymine) This is a plugin that adds support for Elixir to JetBrains IntelliJ...
289 36820 110
New
axelson
This post is a wiki (feel free to hit the edit button near the bottom right of this post to add your own changes!) This post collects co...
239 49266 226
New
bsollish-terakeet
Credo is smart enough to check for (something like) this: assert length(the_list) == 0 with this response: Checking if an enum is empt...
New
alice
Hey, Just curious what are the main benefits of Elixir compared to Clojure? When is Elixir more useful than Clojure and vice versa? Th...
New
TunkShif
This post is an instruction guide to help you setup your Neovim for Elixir development from scratch. It includes general information on h...
274 42716 114
New
AstonJ
Posting this to see if we can make things easier for people to get into Neovim. If you use Neovim and have a favourite distro please let ...
New

We're in Beta

About us Mission Statement