Skip to content

Latest commit

 

History

History
60 lines (41 loc) · 1.31 KB

README.md

File metadata and controls

60 lines (41 loc) · 1.31 KB

Elixir Experiments

Elixir experimental stuff and exercises

Create a new project

mix new my_new_project

or, if we need to supervise it:

mix new --sup my_new_supervised_project

Testify!

- mix test
- mix credo (check the choerence)
- mix dialyzer (check the type spec)

onother important tool is the Property Testing (https://pragprog.com/book/fhproper/property-based-testing-with-proper-erlang-and-elixir)

Important libs to add in a project

Links

Courses:

Video on line:

Books

Special Books

  • Programming Phoenix
  • Metaprogramming Elixir