diff --git a/content/roadmaps/104-angular/content/102-angular-basics/100-angularjs-vs-angular.md b/content/roadmaps/104-angular/content/102-angular-basics/100-angularjs-vs-angular.md index 43c981a6c..5008965a7 100644 --- a/content/roadmaps/104-angular/content/102-angular-basics/100-angularjs-vs-angular.md +++ b/content/roadmaps/104-angular/content/102-angular-basics/100-angularjs-vs-angular.md @@ -1 +1,7 @@ -# Angularjs vs angular \ No newline at end of file +# AngularJS vs. Angular + +AngularJS was the older version of Angular, whose support officially ended in January 2022. Angular is a component-based front-end development framework built on TypeScript, which includes a collection of well-integrated libraries that include features like routing, forms management, client-server communication, and more. + +Free Content +AngularJS Website +Official - Getting started with Angular \ No newline at end of file diff --git a/content/roadmaps/104-angular/content/102-angular-basics/101-angular-components.md b/content/roadmaps/104-angular/content/102-angular-basics/101-angular-components.md index 1780d85ad..37e779033 100644 --- a/content/roadmaps/104-angular/content/102-angular-basics/101-angular-components.md +++ b/content/roadmaps/104-angular/content/102-angular-basics/101-angular-components.md @@ -1 +1,12 @@ -# Angular components \ No newline at end of file +# Angular Components + +Components are the main building block for Angular applications. Each component consists of: + +* An HTML template that declares what renders on the page +* A TypeScript class that defines the behavior +* A CSS selector that defines how the component is used in a template +* Optionally, CSS styles applied to the template + +Free Content +Angular Components Overview +Standalone Components in Angular \ No newline at end of file diff --git a/content/roadmaps/104-angular/content/102-angular-basics/102-angular-templates.md b/content/roadmaps/104-angular/content/102-angular-basics/102-angular-templates.md index 9eedb2e4e..89530de91 100644 --- a/content/roadmaps/104-angular/content/102-angular-basics/102-angular-templates.md +++ b/content/roadmaps/104-angular/content/102-angular-basics/102-angular-templates.md @@ -1 +1,7 @@ -# Angular templates \ No newline at end of file +# Angular Templates + +A Template is a form of HTML which tells Angular to go towards another component. To create many Angular features, special syntax within the templates is used. + +Free Content +Understanding Templates +Template Syntax \ No newline at end of file diff --git a/content/roadmaps/104-angular/content/102-angular-basics/103-angular-modules.md b/content/roadmaps/104-angular/content/102-angular-basics/103-angular-modules.md index 9005f0182..45e8a9dde 100644 --- a/content/roadmaps/104-angular/content/102-angular-basics/103-angular-modules.md +++ b/content/roadmaps/104-angular/content/102-angular-basics/103-angular-modules.md @@ -1 +1,6 @@ -# Angular modules \ No newline at end of file +# Angular Modules + +Modules in Angular act like a container where we can group the components, directives, pipes, and services, related to the application. + +Free Content +Introduction to Modules \ No newline at end of file