Posts

Showing posts with the label Blazor server Blazor Assembly

Blazor Server vs. Blazor Web Assembly

Image
If you constantly keep up with the developments of .NET, you might have heard of something called Blazor. But what is Blazor? Why is it so popular? Well, let’s paint a picture to understand its significance.  Javascript plays a big role in achieving client-side activities for web development. By modifying the Document Object Model (DOM), you can save a lot of backend calls. A direct result of this would be building functionalities effortlessly. Now that advanced versions of javascript-based UI frameworks (view, angular, react, etc.) have arrived, they have started using typescripts.  So if you want your client-side functionalities to perform well, you must learn Javascript. But there is a catch here. The version of Javascript you might have to learn completely depends upon the UI framework. It is where Microsoft comes to our rescue. They released an open-source web framework called Blazor with the simple aim of reducing our dependence on Javascript.  What is Blazor? Blazo...