ASP.NET MVC 5 vs. AngularJS / ASP.NET WebAPI

asp.netasp.net MvcAngularjs

asp.net Problem Overview


I'm currently evaluating the programming model for creating future Webapplications in my company. So I will decide between ASP.NET MVC 5 (with Razor Views) and AngularJS with ASP.NET WebAPI. What are the advantages / disadvantages of these two programming models?

asp.net Solutions


Solution 1 - asp.net

My 2 cents. I personally prefer pure HTML views, an entirely angular front end along with a Web API/EF/SQL Server back end, basically no Razor. Razor is an abstraction to help programmers render HTML, these days everyone's coming to the conclusion that removing these abstractions is a better idea, hence the evolution of ASP.NET from web forms, to MVC etc. It's not really difficult for developers to get to grips with HTML and use an angular front end, moreover this makes UI designers jobs easier, they have pure HTML and JSON/Javascript, they don't need to go about understanding MVC, Razor, controllers and actions. We used to work completely on MVC, in our latest project we moved to a Web API back end and an angular front end, and we've noticed that our UI designer's productivity has vastly improved.

Solution 2 - asp.net

I believe you cannot compare. AngularJS is a Single Page Application (SPA) framework whereas ASP.Net MVC use the standard model where one navigates between pages. Whether you want to build a SPA is decided by factors like

  • Do you want SEO. Which most of these JS rich framework have limited support.
  • How can you structure your app as SPA or multiple SPAs.
  • Coming from a type safe language C# to JavaScript programming is a challenge.
  • Learning AngularJS and using it effectively.

We use the standard MVC 5 razor view to setup the initial AngularJS views so you can even combine them together if required.

See this answer https://stackoverflow.com/questions/18556712/can-you-use-angularjs-with-parse-com/18557234#18557234 to derive more context.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionbitsmugglerView Question on Stackoverflow
Solution 1 - asp.netMohammad SepahvandView Answer on Stackoverflow
Solution 2 - asp.netChandermaniView Answer on Stackoverflow