tcoopman
LiveView 1.0.0 is out!
This 1.0 milestone comes six years after the first LiveView commit.
Why LiveView
I started LiveView to scratch an itch. I wanted to create dynamic server-rendered applications without writing JavaScript. I was tired of the inevitable ballooning complexity that it brings.
Think realtime form validations, updating the quantity in a shopping cart, or real-time streaming updates. Why does it require moving mountains to solve in a traditional stack? We write the HTTP glue or GraphQL schemas and resolvers, then we figure out which validation logic needs shared or dupād. It goes on and on from there ā how do we get localization information to the client? What data serializers do we need? How do we wire up WebSockets and IPC back to our code? Is our js bundle getting too large? I guess itās time to start turning the Webpack or Parcel knobs. Wait Vite is a thing now? Or I guess Bun configuration is what we want? Weāve all felt this pain.
The idea was, what if we removed these problems entirely? HTTP can go away, and the server can handle all the rendering and dynamic update concerns. It felt like a heavy approach, but I knew Elixir and Phoenix was perfectly suited for it.
Six years later this programming model still feels like cheating. Everything is super fast. Payloads are tiny. Latency is best-in-class. Not only do you write less code, thereās simply less to think about when writing features.
Read in full on the Phoenix Blog here:
Dockyard also blogged: Phoenix LiveView Goes 1.0
Congratulations to the whole team who worked on this ![]()
![]()
Trending in Discussions
Other Trending Topics
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
onelixir
Have been waiting for this moment so long! Thanks so much for all your hard work!
AstonJ
Congratulations Chris and everyone who has worked on LiveView - I canāt believe itās been 6 years already!
I guess all good things come to those who wait!
soyjeansoy
Wow, now is the best time for me to update my projects!

ThaddeusJiang
Iām particularly interested in the āhot code upgradeā section in the blog. Could you explain how itās implemented?
Are there any example codes?
Is it specific to the Fly platform?
Can I implement it with any Docker container?
Thanks
sreyansjain
Wow, the much awaited is finally here. Congratulations Chris, Jose and the whole team

apoorv-2204
Congratulation to all the elixir and Phoenix team and all the people who worked on it.
Thank you Phoenix and elixir team
gregvaughn
Congrats Phoenix team!
It might be age fogging my memory, but did LiveView take longer to hit 1.0 than Phoenix itself?
onelixir
Waiting for Programming Phoenix Liveview now
. @SophieDeBenedetto
herman
Want to shoutout to the Elixir and Phoenix devs, it was so cool to bump the package, run format and all the streamlined Heex changes applied automatically.
Small things like this makes working in the ecosystem a joy.
lkuty
Congrats ! It is a joy to use. The whole Phoenix ecosystem and Elixir itself. Five years ago I rewrote an entire system I am responsible for (sole developer) from Erlang to Elixir and expanded it a lot thanks to Phoenix and in particular LiveView.