Replies: 2 comments 1 reply
-
It is much, much, much more similar to something like React with NextJS or Remix, Svelte with SvelteKit, Vue with Nuxt, Solid with SolidStart, etc. Superficially, it is similar to Livewire in the sense that it allows you to write an interactive web application in a language that is not JavaScript. Mechanically (i.e., in terms of how it works) it is very different, with some real advantages. Taking the description of LiveWire's flow from their home page:
Yes, we do this.
No, we don't do this, and it's much better. Instead, we
i.e., with LiveWire, if you click a button, the page makes a new request to the server, loads a whole new HTML page, diffs it against the old HTML page, and then updates the single part that needs to change. This is a much slower and less efficient model for interactivity than what Leptos or all the JS frameworks listed above do. |
Beta Was this translation helpful? Give feedback.
-
Replied by the maintainer itself. Kudos to them. |
Beta Was this translation helpful? Give feedback.
-
Just curious, any PHP/Laravel developer here that ever-used Livewire? In my quick view, it seems quite similar to Livewire.
Beta Was this translation helpful? Give feedback.
All reactions