Skip to main content

Blazor - Build Client Web Apps With C#, Just Intro

 Blazor - Build Client Web Apps With C#

What is Blazor?

Blazor is a Single Page Application development framework. The name Blazor is a combination/mutation of the words Browser and Razor (the .NET HTML view generating engine). The implication being that instead of having to execute Razor views on the server in order to present HTML to the browser, Blazor is capable of executing these views on the client. 

Blazor also supports executing SPAs on the server.


What Blazor is not

Blazor is not like Silverlight, Microsoft’s previous attempt at hosting in-browser applications. Silverlight required a browser plugin in order to run on the client, which prevented it from running on iOS devices.

Blazor does not require any kind of plugin installed on the client in order to execute inside a browser. Blazor either runs server-side, in which case it executes on a server and the browser acts like a dumb terminal, or it runs in the browser itself by utilising WebAssembly.

Because WebAssembly is a web standard, it is supported on all major browsers, which means also client-side Blazor apps will run inside a browser on Windows/Linux/Mac/Android and iOS.


Blazor is open-source

Blazor source code is available here. The source code is owned by The .NET Foundation, a non-profit organisation created for the purpose of supporting open-source projects based around the .NET framework.
According to the .NET foundation, at the time of writing it is supported by 3,700 companies and has 61,000 contributors.

What is WebAssembly?

WebAssembly (abbreviated “Wasm”) is an instruction set designed to run on any host capable of interpreting those instructions, or compiling them to native machine code and executing them.

Wasm is an instruction set that is formatted in a specific binary format. Any host (hardware or software) that adheres to this specification is therefore capable of reading binaries and executing them – either interpreted, or by compiling directly to machine language specific to the device.

Wasm is akin to the common instruction set (Common Intermediate Language) that .NET source code compiles to. Just like .NET, Wasm can be generated from higher languages such as C#.

This is Just and Into for the blazor .net we will look for more information in upcoming articles. 

Comments

Popular posts from this blog

Agile Methodology

Agile project delivery was developed in order to succeed in an ever-changing environment, smoothly responding to any changes while building highly functional software. As indicated in the Manifesto for Agile Software Development, this is only possible if individuals, interactions and customer collaboration come first, before processes, tools and contract negotiations. In the agile approach, the measure of progress is the ability to deliver working software to the client within a short timescale. The most significant differences between modern agility and the more traditional waterfall methodology pertain to: Levels of flexibility Waterfall development is pretty rigid and offers little to no chance of modifying a preconceived plan, while flexibility and being able to adjust to any changes are key to success, especially since ideas and requirements may evolve over time. The nature of the processes The waterfall process is divided into several stages with a single test phase at the end. I...

Do you want to learn programming?

Do you want to learn programming? In my personal opinion, one way to learn programming after you are having the basic knowledge is to build a project that involved the live world example or system.  Building projects is one of the best ways to learn. Not only do you learn an array of principles and techniques, but you get your hands messy throughout.  This GitHub repository lists a huge selection of project-based learning tutorials. Some of the languages that these projects are taught on are C# C/C++ Clojure Elixir Erlang F# Go Haskell HTML/CSS Java JavaScript Kotlin Lua OCaml PHP Python R Ruby Rust Scala Swift Additional resources After getting the basic knowledge of any programming language you want to implement that knowledge to work on a project that time you get the complete idea how to work with multiple components separately but the arrangement in such a way that it will give the desired output you required. Programming is a task where you already know the answer i.e wh...

Another 10 Free Best WooCommerce Extensions and Add-ons in 2020

Another 10 Free Best WooCommerce Extensions and Add-ons in 2020 I found another 10 Extensions and Add-ons that must be helpful to you people are given below Google Analytics Integration As the name implies, this plugin allows you to connect your site to Google Analytics. It only requires you to authenticate the site with your Google Analytics account and you’ll immediately view full analytics data from Google Analytics right from your WordPress dashboard. Link:  https://wordpress.org/plugins/woocommerce-google-analytics-integration/ Booster for WooCommerce This plugin offers various features Bulk Price Converter, Currency Exchange Rates, Prices and Currencies by Country and a lot more to supercharge your WooCommerce store. Link:  https://wordpress.org/plugins/woocommerce-jetpack/ Discount Rules Here’s a plugin that enables you to set rules where a discount could apply. With Discount Rules, you can set a basic percentage-based discounts, or an advanced rule such as applyin...