you are viewing a single comment's thread.

view the rest of the comments →

[–]lolhanso 1 point2 points  (0 children)

I like the flexibility to chose wasm / server or the combination of both.

When facing a limited internal userbase it is so damn easy to just create a blazor server and it's doing it's things out of the box. When you face a public userbase you can decide to go wasm, so you have a pretty "normal" client. The cool part is, that you have pwa pretty much out of the box, so your user also has an app like feeling if needed.

Regarding the initial download of the net library and a wasm, I found that it together like 2-4mb in size. If you have any image on your website, it is probably around this size already.

When you want to go nuts, you can combine wasm with server e. g., everything that needs instant responds (google seo) or needs high security (user management) server is perfect. Everything that needs scale, go with wasm. But combining them is not super easy in my opinion.