Note: This article is published on 10/22/2021.
I put these articles together
- What is Node JS
- What is Angular
- Angular Installation and Environment Setup (written in 2021)
- Angular New Devlopment Site
- Why Angular --- this article
- Angular Versions
- What is React
I wrote an article called Angular Versions, and later on renamed it Angular Version Change Frequency, and this article used to be part of it. However, it seems that the article is a little bit too long, so I pulled this part out as a stand alone.
Introduction
Before I answer why Angular, I will explain what Angular is.
This is the structure of this article,
- Introduction
- What Angular is
- Why Angular
- Summary
What is Angular?
I will not answer this question in my own words, instead, I use the wiki definition below"
"Angular (commonly referred to as "Angular 2+" or "Angular CLI") is a TypeScript-based free and open-source web application framework led by the Angular Team at Google and by a community of individuals and corporations. Angular is a complete rewrite from the same team that built AngularJS."
I think this paragraph from Introduction to Angular can add more info and very briefly:
"Angular is an open-source project maintained by Google and a community of developers. The new Angular platform is vastly different from the legacy framework you may have used in the past. In collaboration with Microsoft, Google made TypeScript the default language for Angular. TypeScript is a superset of JavaScript that enables developers to target legacy browsers such as Internet Explorer 11, while allowing them to write modern JavaScript code that works in evergreen browsers such as Chrome, Firefox, and Edge. The legacy versions of Angular, versions in the 1.x.x range, are referred to as AngularJS. Version 2.0.0 and higher versions are called Angular. Where AngularJS is a monolithic JavaScript SPA framework, Angular is a platform that is capable of targeting browsers, hybrid-mobile frameworks, desktop applications, and server-side rendered views."
Why Angular
Angular is popular and in recent years, a lot of .NET developers and Java developers switched to Angular for front-end development. If one asks: Why do we choose Angular? This is a question for all Angular developers and actually is a frequent interview question.
Not Due to the Minor Technical Reasons
If we search online, we can get a lot of answers for this question, such like
- 8 Proven Reasons You Need Angular for Your Next Development Project or
- Six reasons to choose angular for web development.
However, those answers are too technical and did not catch the basic point, in my opinion. I list the articles in the reference with some details, for example, one reason to use Angular is that Angular uses TypeScript. Yes, TypeScript is a good feature for Angular, but React does not use TypeScript, why it is just as popular as Angular?
Due to the Major Software Evolution Trends
I prefer this definition as a reason to use Angular [ref]:
"Angular helps build interactive and dynamic single-page applications (SPAs) with its compelling features including templating, two-way binding, modularization, RESTful API handling, dependency injection, and AJAX handling."
From this definition, we can see: Angular Platform have two major characteristics,
- SPA --- Remoting access to the server
- compelling --- this feature make it faster and secure

Pankajkumar PatelPosted Oct 25, 2021, 1:45 PM
Good described