-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating
Learning Angular - Fifth Edition
By :
The power of the Angular framework is based on the combination of the following characteristics:
In the following sections, we will examine each characteristic in more detail.
Angular applications can run on different platforms: web, server, desktop, and mobile. Angular can run natively only on the web because it is a web framework; however, it is open-source and is backed by incredible tooling that enables the framework to run on the remaining three using the following tools:
The next pillar of the framework describes the tooling available in the Angular ecosystem.
The Angular team has built two great tools that make Angular development easy and fun:
The Angular CLI is the de facto solution to work with Angular applications. It allows the developer to focus on writing application code, eliminating the boilerplate of configuration tasks such as scaffolding, building, testing, and deploying an Angular application.
It is simple and easy to start with Angular development because when we install Angular, we also get a rich collection of first-party libraries out of the box, including:
The preceding libraries are installed by default when we create a new Angular application using the Angular CLI. However, they are only used in our application if we import them explicitly into our project.
Many companies use Angular for their websites and web applications. The website https://www.madewithangular.com contains an extensive list of those companies, including some popular ones.
Additionally, Angular is used in thousands of projects by Google and by millions of developers worldwide. The fact that Angular is already used internally at Google is a crucial factor in the reliability of the framework. Every new version of Angular is thoroughly tested in those projects before becoming available to the public. The testing process helps the Angular team catch bugs early and delivers a top-quality framework to the rest of the developer community.
Angular is backed and supported by a thriving developer community. Developers can access many available communities worldwide, online or locally, to get help and guidance with the Angular framework. On the other hand, communities help the Angular framework progress by sharing feedback on new features, testing new ideas, and reporting issues. Some of the most popular online communities are:
Now that we have seen what Angular is and why someone should choose it for web development, we will learn how to use it and build great web applications.