Create Progressive Web Applications with Blazor WebAssembly
 This article is going to explain how to create a Progressive Web Application (PWA)  with Blazor WebAssembly with an example.   What is PWA   The PWA is a web application that acts like a native application using modern standards. You can install PWA on your computer. You can add a shortcut on the desktop and launch it in the start menu.   You can easily convert the Blazor application to PWA. Let's see what are things that need to create an installable web application.    A web manifest (The web manifest is a JSON file that tells the browser about your Progressive Web Application) [manifest.json]  HTTPS  A Service Worker with a functional fetch hander (So that your browser will recognize it is an installable app)    Let’s take a step-by-step look at how to create a Progressive Web Application through Blazor WebAssembly   Create a new project  In the create a new project window, choose Blazor App     Configure Your New Project  Enter the project name and location in Configure your n...