Code Dependencies

Learn about a few code dependencies in Elixir.

We'll cover the following...

The Mix tool is smart when it compiles a project. It analyzes the dependencies between our source files and only recompiles a file when it has changed or a file it depends on has changed. As developers, we can also access this dependency information, gaining valuable insights into our code. We do this with ...