From the course: Blazor WebAssembly: Building Your First App
Unlock the full course today
Join today to access over 24,900 courses taught by industry experts.
Why Blazor WebAssembly over other frameworks? - Blazor Tutorial
From the course: Blazor WebAssembly: Building Your First App
Why Blazor WebAssembly over other frameworks?
- [Instructor] As a .NET web developer, there are several frameworks that you can choose from. These include ASP.NET Core Web App, JavaScript frameworks such as Angular and React, Blazor Server and Blazor WebAssembly. Let's take a look at each one and the advantages and disadvantages of each one. ASP.NET Core Web Apps can be built either using MVC or by using Razor Pages directly. This framework has the benefit of supporting server-side functionality and returning a view layer to render HTML. However, these apps unable to provide any interactive web UI functionality. If we wanted to add it, we would have to use JavaScript. As a web developer, you would have to know JavaScript and C# if you wish to support both server-side and client-side functionality. Next we'll have a look at JavaScript frameworks. Angular and React are both examples of JavaScript frameworks and both have JavaScript syntax extensions. These frameworks…