Learn Elixir
& Phoenix
ElixirCasts makes it easy to learn how to build applications with Elixir and Phoenix
Watch or Read
The best of both worlds. Every episode includes a video tutorial and a full transcript.
200+ Episodes
Every episode delivers hands-on, real-world examples you can use.
Stay Current
Continually updated with episodes that showcase the latest in the Elixir ecosystem.
Latest Episodes

#66: Pipe Operator
The pipe operator is one of the great features that makes it fun to write Elixir code. In this episode we’ll see how to use it to chain operations together in a way that’s easy to read.

#65: Installing Elixir with asdf
In this episode we’ll look at one way to install Elixir. We’ll be using the asdf version manager, which lets us manage multiple versions of programming languages like Elixir, Erlang, Node and more.

#64: Editor Setup for ElixirCasts
Curious about the editor and different packages we use on ElixirCasts? In this episode we’ll look at the Atom editor and the different Elixir-related packages that we use.

Alchemist's Edition
#63: Getting Started with Tasks
In this episode we’ll be exploring one of the key features of Elixir: tasks. Tasks make it easy to run Elixir code concurrently. In this episode we’ll look at some common ways Task is used.

#62: Simplifying Phoenix Controllers with action_fallback
In this episode we’ll be exploring one method to simplify Phoenix controllers using action_fallback. action_fallback allows you to specify a plug to handle errors in your controller.

Alchemist's Edition
#61: Twitter Authentication
In this episode we’ll be adding the ability for users to sign in to a Phoenix web application with Twitter. We’ll use Ueberauth to help us handle the OAuth flow to and from Twitter.

#60: Formatting Numbers
In this episode we’ll use the Number package to help us format numbers for an application. We’ll see how we can convert numbers to different formats like currency, percent, and phone number.

Alchemist's Edition
#59: Getting State from a GenServer
In this episode we’ll explore how we can separate the client API of a GenServer from its server callbacks. This can be a good idea to help break GenServer modules up as they become more complex.

#58: Recurring Work with GenServer
In this episode we’ll look at how we can use a GenServer to schedule some recurring work. We’ll create a GenServer fetches the price of a Bitcoin at a regular interval.