You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+26Lines changed: 26 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -18,9 +18,19 @@ This repository contains a list of resources to learn Angular.
18
18
## Table of Contents
19
19
20
20
-[Introduction](#introduction)
21
+
-[Features of Angular](#features-of-angular)
22
+
-[Difference between AngularJS vs Angular](#difference-between-angularjs-vs-angular)
23
+
-[Angular vs React](#angular-vs-react)
21
24
-[Roadmap](#roadmap)
22
25
-[Configuration](#configuration)
26
+
-[Prerequisites](#prerequisites)
27
+
-[Installation](#installation)
23
28
-[Components](#components)
29
+
-[Three main building blocks](#three-main-building-blocks)
30
+
-[Component Creation](#component-creation)
31
+
-[Using Angular CLI](#using-angular-cli)
32
+
-[Manual Creation](#manual-creation)
33
+
-[Example](#example)
24
34
-[Data Binding](#data-binding)
25
35
-[One Way Binding](#one-way-binding)
26
36
-[Two Way Binding](#two-ways-binding)
@@ -143,6 +153,22 @@ Angular is a platform and framework for building single-page client applications
143
153
|No SEO Friendly|Seo Friendly|
144
154
|Performance is slow|Performance is fast|
145
155
156
+
[Back to top⤴️](#table-of-contents)
157
+
158
+
### Angular vs React
159
+
160
+
-**Angular** - Angular is a full-fledged framework that provides a complete solution for building web applications. It includes features like two-way data binding, routing, forms, HTTP client, and more. Angular is maintained by Google and has a large and active community of developers.
161
+
162
+
-**React** - React is a JavaScript library for building user interfaces. It is focused on the view layer of an application and provides a simple and declarative way to build UI components. React is maintained by Facebook and has a large and active community of developers.
163
+
164
+
**Comparison** - Angular is a full-fledged framework that provides a complete solution for building web applications, while React is a library focused on building user interfaces. Angular provides features like two-way data binding, routing, forms, and HTTP client out of the box, while React is more flexible and allows developers to choose the tools and libraries they want to use.
165
+
166
+
**When to use Angular** - Angular is a good choice for building large and complex web applications that require a complete solution for building UI components, managing state, and handling data. Angular provides a set of tools and libraries that work well together and are designed to scale with the size of the application.
167
+
168
+
**When to use React** - React is a good choice for building user interfaces that are focused on the view layer of an application. React provides a simple and declarative way to build UI components and allows developers to choose the tools and libraries they want to use. React is a good choice for building small to medium-sized applications that require flexibility and customization.
0 commit comments