logoalt Hacker News

lpil10/12/20241 replyview on HN

The Lustre framework supports LiveView as well as entirely in-browser state management, which Elixir LiveView cannot do.


Replies

innocentoldguy10/12/2024

I think "cannot do" is a misnomer. Shouldn't it be, "consciously designed not to do"?

Server-side state management offers several advantages over in-browser state management, such as:

• Better security and privacy.

• More reliability and control.

• Better and more predictable performance since it removes the burden from the client device.

• More accurate user metrics.

• Minimizes browser compatibility issues.

• Better scalability when prioritizing user data security.

• Easier debugging.

(Edited to fix bullet formatting.)

show 1 reply