Angular 7 | Introduction Last Updated : 24 Sep, 2020 Comments Improve Suggest changes Like Article Like Report Angular 7 is a TypeScript based front-end web framework by Google. It enables you to create Single Page Applications(SPA) with the help of the concept of components. The components in Angular 7 are structured like a tree i.e. there are parent and child components in which each child component is connected to its respective parent component. Single Page Applications: A single page application is a web application which provide users to a very fast and reactive experience. It contains menu, buttons, and blocks on a single page and when a user clicks any of them, it dynamically rewrites the current page instead of loading new pages from the server. This is the reason behind its robustness. Why Angular 7: There are many advantages of angular 7 which makes it more convenient for use. Robustness and High Performance: Supports most of the languages: Angular can be used as a front-end web development tool for the programming languages like Node.js, .Net, PHP, Java Struts, Spring and other servers for real time rendering in just HTML and CSS. It also optimizes the website for better SEO.Code optimization: It makes the templates in optimized way for today's JavaScript virtual machines which gives the benefits of hand-written code. Code splitting: Angular apps are fast and load quickly with the new Component Router (handles routing), which delivers automatic code-splitting and the user only loads the code required to render the view they want. Supports multiple platforms: Desktop apps: It allows you to create desktop installed apps on different operating systems i.e. Windows, Mac or Linux by using the same methods which we use for creating web and native apps.Progressive web applications: Progressive web applications are the most common apps which are built with Angular. It provides modern web platform capabilities to deliver high performance installation apps. Productive: Templates: Provides with simple and smooth UI view with intelligent IDE.Angular CLI: Angular CLI provides command line tools start building fast, add components and tests, and then instantly deploy. Full Development: Testing: Provides with strong unit testing i.e. it provides Karma and Jasmine for unit testing. By using it, you can check your broken things every time you save.Accessibility: In it, you can create accessible applications with ARIA-enabled components, developer guides, and built-in ally test infrastructure. Comment More info P piyush25pv Follow Improve Article Tags : Web Technologies AngularJS Explore AngularJS BasicsAngularJS Tutorial 5 min read Introduction to AngularJS 4 min read Angular CLI | Angular Project Setup 3 min read AngularJS Expressions 2 min read AngularJS Modules 3 min read AngularJS ng-model Directive 4 min read AngularJS Data Binding 4 min read AngularJS Controllers 3 min read AngularJS | Scope 2 min read AngularJS Services 4 min read AngularJS | AJAX - $http 3 min read AngularJS | Tables 2 min read AngularJS Select Boxes 2 min read AngularJS SQL 3 min read AngularJS HTML DOM 2 min read AngularJS Events 3 min read AngularJS | Forms 3 min read AngularJS Form Validation 3 min read AngularJS | API 2 min read AngularJS and W3.CSS 2 min read AngularJS Includes 3 min read AngularJS Animations 1 min read AngularJS | Application 3 min read AngularJS DirectivesAngularJS Directives 9 min read AngularJS ng-app Directive 1 min read AngularJS ng-bind Directive 2 min read AngularJS ng-bind-html Directive 2 min read AngularJS ng-bind-template Directive 2 min read AngularJS ng-blur Directive 1 min read AngularJS ng-change Directive 2 min read AngularJS ng-checked Directive 2 min read AngularJS ng-class Directive 2 min read AngularJS ng-class-even Directive 2 min read AngularJS ng-class-odd Directive 2 min read AngularJS ng-click Directive 2 min read AngularJS ng-cloak Directive 2 min read AngularJS ng-controller Directive 2 min read AngularJS Directives Complete Reference 2 min read AngularJS FiltersAngularJS | Filters 7 min read AngularJS currency Filter 2 min read AngularJS | date Filter 2 min read AngularJS filter Filter 3 min read AngularJS json Filter 2 min read AngularJS limitTo Filter 2 min read AngularJS lowercase Filter 1 min read AngularJS number Filter 1 min read AngularJS orderBy Filter 4 min read AngularJs uppercase Filter 1 min read AngularJS Converting FunctionsAngularJS angular.lowercase() Function 2 min read AngularJS angular.uppercase() Function 1 min read AngularJS angular.forEach() Function 1 min read AngularJS Comparing FunctionsAngularJS angular.isArray() Function 2 min read AngularJS angular.isDate() Function 2 min read AngularJS angular.isDefined() Function 2 min read AngularJS angular.isElement() Function 2 min read AngularJS angular.isFunction() Function 2 min read AngularJS angular.isNumber() Function 2 min read AngularJS angular.isObject() Function 2 min read AngularJS | angular.isString() Function 1 min read AngularJS angular.isUndefined() Function 2 min read AngularJS angular.equals() Function 2 min read AngularJS angular.toJson() Function 2 min read AngularJS QuestionsHow to bundle an Angular app for production? 4 min read How to add many functions in one ng-click directive? 2 min read How to directly update a field by using ng-click in AngularJS ? 3 min read How to Add Dynamic Options for Multiple Selects Inside ng-repeat Directive ? 3 min read How to detect when an @Input() value changes in Angular? 3 min read How to open popup using Angular and Bootstrap ? 2 min read How to reload or re-render the entire page using AngularJS? 2 min read How to add input fields dynamically on button click in AngularJS ? 2 min read How to Create Button Dynamically with Click Event in Angular ? 2 min read How to use jQuery in Angular ? 2 min read AngularJS Examples 2 min read Like