elixir_koans alternatives and similar packages
Based on the "Examples and funny stuff" category.
Alternatively, view elixir_koans alternatives based on common mentions on social networks and blogs.
-
magnetissimo
Web application that indexes all popular torrent sites, and saves it to the local database. -
phoenix-chat-example
๐ฌ The Step-by-Step Beginners Tutorial for Building, Testing & Deploying a Chat app in Phoenix 1.7 [Latest] ๐ -
phoenix-liveview-counter-tutorial
๐คฏ beginners tutorial building a real time counter in Phoenix 1.7.14 + LiveView 1.0 โก๏ธ Learn the fundamentals from first principals so you can make something amazing! ๐ -
phoenix-ecto-encryption-example
๐ A detailed example for how to encrypt data in an Elixir (Phoenix v1.7) App before inserting into a database using Ecto Types -
coderplanets.com
DISCONTINUED. coderplanets.com API(GraphQL) server, build with elixir, phoenix, absinthe -
phoenix-todo-list-tutorial
โ Complete beginners tutorial building a todo list from scratch in Phoenix 1.7 (latest) -
portal
DISCONTINUED. A tutorial for shooting fault-tolerant portals for distributed data-transfer application in Elixir
CodeRabbit: AI Code Reviews for Developers

Do you think we are missing an alternative of elixir_koans or a related project?
README
Elixir Koans
Elixir koans is a fun way to get started with the elixir programming language. It is a tour of the most important features and idiomatic usage of the language.
Prerequisites
You need to have Elixir installed. Please refer to the official guide for instructions.
First, clone the repo from GitHub:
$ git clone https://github.com/elixirkoans/elixir-koans.git
$ cd elixir-koans/
Next, fetch mix dependencies by running:
$ mix deps.get
You might get prompted to install further dependencies. Reply "y".
On Linux, you'll need to install inotify-tools
to be able
to use the autorunner in this project.
Running
With the dependencies installed, navigate to the root directory of this project and run:
$ mix meditate
You should see the first failure. Open the corresponding file in your favourite text editor and fill in the blanks to make the koans pass one by one. The autorunner will give you feedback each time you save.
If you want the autorunner to show you your previous results, run it with --no-clear-screen
$ mix meditate --no-clear-screen
If you want to jump to a specific lesson, run it with --koan=<koan name>
$ mix meditate --koan=PatternMatching
Any typos on the koan name will show the complete list of koans, where you can pick any.
Contributing
We welcome contributions! If something does not make sense along the way or you feel like an important lesson is missing from the koans, feel free to fork the project and open a pull request.
List of [contributors](CONTRIBUTORS.md).