.NET Blazor

Blazor is a revolutionary framework that allows .NET developers to build web applications using C# instead of JavaScript. It aims to compete with traditional JavaScript-based SPA frameworks by leveraging the .NET ecosystem and existing libraries. Blazor has three rendering options: Blazor WASM, which runs C# directly in the browser using WebAssembly; Blazor Server, which handles UI updates over a SignalR connection; and Blazor Static SSR, which streams UI updates over an HTTP connection. While each option has its own advantages and drawbacks, Blazor Static SSR offers reduced load times and scalability. However, it still relies on Blazor WASM or SignalR for interactivity.

https://dusted.codes/dotnet-blazor

To top