|
|
|
|
|
by LeftHandPath
536 days ago
|
|
1: Actually, that's not true! I use Leptos in their "islands" mode for server side rendering. The entire page is sent as an HTML response, and there is little/no "hydration". The WASM file ONLY includes interactive "islands" that are explicitly marked with the #[island] attribute [0]. In other words, the server binary is handling most of the rendering, similar to if I used a templating tool like Askama or Tera. 2: Leptos is generally slower than vanilla JS, I believe for that reason, but comparable to major JS frameworks [1, 2]. [0]: https://book.leptos.dev/islands.html [1]: https://krausest.github.io/js-framework-benchmark/current.ht... [2]: https://leptos.dev/ |
|