Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Progressive web app implementation in ASP.NET MVC [closed]

I'm researching progressive web apps, and i was wondering if it's possible to integrate this technology with existing ASP.NET MVC web applications.

I don't find any example of this integration, only in combination of javascript frameworks that render HTML like angular, knockout etc.

Also, is it possible to host a progressive web app on IIS or are you limited to an apache web server?

like image 688
Willem Dewilde Avatar asked Sep 01 '17 07:09

Willem Dewilde


1 Answers

After testing, I was successful at implementing the functionality by adding the service worker and manifest to a ASP.NET MVC application. Since the view (HTML) gets rendered in the back-end, it's only possible to cache a static version of your web application. So preferable you should use angular etc to generate your HTML.

A progressive web app works on IIS and Apache web server.

like image 135
Willem Dewilde Avatar answered Nov 15 '22 05:11

Willem Dewilde