Replies: 2 comments
|
A view from performance, alpinejs is the last but solidjs is nearly the first. see https://krausest.github.io/js-framework-benchmark/current.html |
0 replies
|
Alpine has slightly different goals. Solid is mostly recommended to be used with JSX and compiled. While you can use it directly in the browser without compilation it is geared towards client rendering whereas Alpine is set up for augmenting previously server-rendered HTML Alpine inlines its bindings in the HTML and attaches to existing DOM nodes. While you can hydrate the DOM with Solid it is designed only to work realistically with things previously server-rendered with Solid. While performance-wise Solid is considerably faster and smaller, Alpine is still better for Alpine's use case. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
They both claim to be a compile-free vdom-free reactivity library 🤔
All reactions