With AngularJs + Web API, why do we need ASP.NET MVC and IIS?

Using AngularJs + Web API do we need ASP.NET MVC and IIS?

Can I use the AngularJS plus WEB API to develop a web application without IIS and ASP.NET MVC?

+5
angularjs iis asp.net-web-api asp.net-mvc-4
Oct 26 '13 at 16:39
source share
2 answers

Using AngularJs + Web API do we need ASP.NET MVC and IIS?

By completing the loading of all the logic to the client, without providing backups on the server side, you cause a site break when JS does not load , including for search engines indexing bots.

Can I use the AngularJS plus WEB API to develop a web application without IIS and ASP.NET MVC?

Yes, it will be just fragile and invisible to search engines.

+3
Oct 26 '13 at 16:50
source share

This is definitely possible in terms of technology points. I see two areas of concern:

  • Do clients with outdated browsers have problems accessing the site? This is not a problem, as newer versions of browsers are released.

  • Are non-IIS web API hosting services reliable and scalable?

+3
Oct 26 '13 at 20:48 on
source share



All Articles