What are Phoenix Channels?
Let's deep dive into Phoenix Channels.
An overview of Channels
Real-time applications exist at the intersection of a communication layer and business logic that satisfies users’ needs. We covered the communication layer in the previous lessons, but we haven’t yet walked through how to build real applications with business logic.
In this lesson, we’ll look at a popular and well-designed framework that allows the development of real-time applications: Phoenix.
Note: Phoenix Channels are the most powerful real-time abstraction that currently exists in the Elixir community, and we will explore their basics to develop an essential real-time toolkit.
After an introduction to the different components of Channels, we’ll see specific examples of how we can use them and structure our application around them.
Importance of Channels
Channels will be at the ...