1. 15
    1. 6

      I’ve been working with LiveView for a couple months now, and this article gives a good example of the simplicity of making dynamic web sites in LiveView. It feels like magic, but if you do liveSocket.enableDebug() while developing all the magic is laid out right in front of you which is cool to see.

    2. 3

      LiveView is definitely a cool technology. As far as I’m concerned, it delivers on what Microsoft would have wanted to make when they built ASP.NET Web Forms, but it’s much better.

      1. 1

        The ASP.NET team is trying again with Blazor, specifically the server-side hosting model.

        1. 1

          Isn’t Blazor a version of C# in the browser via WASM?

          1. 1

            It can run either in the browser using wasm, or on the server using a lightweight JS client to receive real-time updates.