Home > Enterprise >  How to create a standalone web application with Blazor?
How to create a standalone web application with Blazor?

Time:10-07

I am new to Web development and Blazor. I would like to create a standalone web application using Blazor where the user would click on deployed files on local network and have the application start inside their web browser much like having a exe standalone for desktop applications. I have searched Windows documentation on Blazor but cant seem to find the answer. Thanks in advance

CodePudding user response:

Try building a blazor pwa application, this can be installed on desktop and it work like desktop application on windows or Mac OS. Here is the MS doc to create a sample pwa application.image

On iOS, visitors can install the PWA using Safari's Share button and its Add to Homescreen option. On Chrome for Android, users should select the Menu button in the upper-right corner, followed by Add to Home screen.

Once installed, the app appears in its own window without an address bar:

image

  • Related