...

/

Adding Layers to LiveView

Adding Layers to LiveView

Let’s take a look at how LiveView works in making interactive applications and how we can integrate it into our OTP boundary layer.

Since LiveView is an implementation of Phoenix Channels, the integration story for the two frameworks will be similar. Phoenix LiveView is a library for allowing highly interactive applications with impressive performance and bidirectional communication. That sounds much like Channels, but there’s an important distinction— LiveView does so with no custom JavaScript.

How it works

Here’s how LiveView goes about providing real-time user experiences with server-rendered ...