SlideShare a Scribd company logo
1 of 8
Download to read offline
Array, String, Number Manipulation
Doing different challengeable Machine tests which are
conducted in top MNCs.
Skills:
String Array
yyyyy
Object SetTimeout
SetInterval
al
Forms DOM Manipulations
Movie, Jokes & User APIs calls
An app with Registration, login, access different
APIs via AJAX, logout.
Skills:
Local Storage Session Storage JSON
AJAX XHR HTTP
Product Management in Angular
A real-time project with Product Management
which includes, Add, Edit, Delete and Search!
Skills:
Data Binding Inbuilt Directive
Custom Directive Inbuilt Pipes Custom Pipes
TD & Reactive Forms
Auth, Weather, News & Zomato App
A Project which accesses your JSON data and
authenticate the credentials. Call Weather, News &
Zomato APIs.
Skills:
Http Client RXJS Observable Routing
Custom Headers RXJS Subject
REAL-TIME PROJECTS
REAL-TIME PROJECT - SHOPPING CART APPLICATION
A real-time Shopping cart app from very scratch to Advanced level. The project includes Register, Login, Client- side
Authorization, Server-side Authorization, Add Products, List products, Filter products by category wise, Add to cart, View
cart, Update cart, Delete cart items, Search, View Product details, Logout.
Technologies
How to convert HTML app into Angular App, How to load external CSS, JS & Jquery, Routing, Route
Guard, Dynamic Routing, Connect REST API, Observable, Subject, Behaviour Subject, Event Emitter, HTTP,Interceptor,
Child Routes, File upload, Split app into different Modules, Eager Loading, Lazy Loading, Async Loading.
Integrate Angular Material Module and UI Components
The Real-time Project Demo - Live Preview
TYPESCRIPT COURSE CONTENT
SECTION 1: TYPESCRIPT INTRODUCTION
➢What is TypeScript?
➢Features of TypeScript.
➢How to compile TypeScript into JS?
➢What is Transpilation?
Practical:
➢Installing Typescript Engine in Node.
➢Compiling TS code (source) to JS code(source).
SECTION 2: NODE INTRODUCTION
➢What is Node?
➢Node Environment setups.
➢A Brief Node Introduction.
➢What is Node Modules?
➢What are the Types of Node Modules available?
➢What is Local & Global Module?
SECTION 3: TYPESCRIPT ENVIRONMENT SETUPS
➢Install TypeScript Engine in Node.
➢Execute the 1stTypeScriptcode.
➢What iswatcher?
➢Introduction of ts-nodeNPM.
Practical:
➢Practicing Watcher mode.
SECTION 4: VARIABLES IN TS
➢Difference between Static & Dynamic type checking.
➢How to Declare & Define Variables inTS?
➢What is any inTS?
➢Difference between let &var.
➢Template string introduction.
SECTION 5: DATATYPES IN TS
➢Brief Introduction of below types,
•String
•Number
•Boolean
•Array
•Object
•Tuple
•Enum
•Any
•Void
•Never
•Null
•Undefined
Practical:
➢Practicing different types of Data types in TS.
SECTION 6: DIFFERENT TYPES OF PARAMETERS IN TS
➢Difference between JS parameter & TS Parameter.
➢Let vs var vs const
➢Passing Parameters to the functions.
➢How to pass optional parameter?
➢What is Default Parameter?
➢How to use default parameter before required parameter?
➢Rest Parameter overview.
Practical:
➢Passing all above parameters in a single function.
SECTION 7: FEATURES IN TS.
➢Arrow functions.
➢Where to use Arrow functions?
➢Destructing an Array.
➢Destructing and Object.
SECTION 8: OOPS IN TYPESCRIPT
➢What is Class?
➢What is Class definition??
➢What is Object??
➢How to Create Object?
➢Brief introduction about,
•Property
•Method
•Constructor
➢What is Inheritance?
➢Different types of Inheritance in TS.?
➢Access modifiers in TS.?
➢Read only in TS.?
➢Static Property & Methods inTS.
➢Interface in TypeScript.
Practical:
➢Practicing all opps in a real-time examples.
➢Converting JS function into TS Class with oops concepts.
ANGULAR 9 TRAINING COURSE CONTENT
SECTION 1: INTRODUCTION TO ANGULAR
➢What is Angular?
➢Difference between framework &Library?
➢History of Angular and its versions.
➢Why Angular?
➢Features of Angular.
➢What is Single Page Application?
➢Difference between SPA & Traditional Application.
➢What is MVC?
➢How MVC works in Client & Server sides?
SECTION 2: ANGULAR 9 ENVIRONMENT SETUPS
➢What is Angular CLI?
➢Purpose of the CLI.
➢Angular CLI installation.
➢Create a Basic Angular App by using CLI.
➢Executing the Angular Application in the browser.
➢How an Angular app Bootstrapping?
➢Brief explanation about the structure of the Angular App.
SECTION 3: MAIN BUILDING BLOCKS OF ANGULAR
➢An Overview of the below Building blocks of Angular
•Modules
•Components
•Templates
•Metadata
•Data binding –Directives
•Services
•Dependency Injection.
➢What is Module & its importance?
➢What is Root Module and Child Module?
SECTION 4: COMPONENTS IN ANGULAR 9
➢What is Component?
➢ How to create a Component manually and through CLI?
➢What is Component decorator and its Meta data?
➢Component’s Structure overview.
➢Component Life cycle Hooks.
➢Components Interactions overview.
➢How to pass Data from Parent to Child & Child to Parent?
SECTION 5: DATA BINDINGS AND EVENT BINDINGS IN ANGULAR 9
➢What is Data Binding?
➢What is Two-way Data Binding?
➢String Interpolation.
➢Style Binding, Class Binding.
➢Overview of Event Binding.
➢Element reference and $event service in Angular.
➢Event Filtering
SECTION 6: SERVICES IN ANGULAR 9
➢What is Services?
➢Why should we use Services?
➢How to create Services in Angular?
➢Singleton Object -Overview
➢What is Dependency Injection?
➢How to use Dependency Injection?
➢What is providers?
➢What is@Injectable()?
➢What is HierarchicalDI?
SECTION 7: DIRECTIVES & CUSTOM DIRECTIVES IN ANGULAR 9
➢What is Directives?
➢What are the Different kind of Directives available in Angular?
➢Difference between Structural & Attribute Directives.
➢Overview of All Structural & Attribute Directives.
➢Difference between ngIf& hidden directives.
➢How to create Custom Attribute Directive?
➢How to create Custom Structural Directive?
➢How to pass Input property to the custom directive?
➢How to receive Input property from the custom directive?
SECTION 8: PIPES IN ANGULAR 9
➢What is Pipe in Angular?
➢Purpose of the Pipes.
➢Difference between Pipes &Directives.
➢Detailed explanation of the below Pipes,
•Lowercase
•Uppercase
•Titlecase
•Slice
• Json
•Number
•Percent
•Currency
•Date
➢What is Pure Pipe & Impure Pipe?
➢How to create Custom Pipes?
➢What is chaining Pipes?
➢What is Parameterized Pipe?
SECTION 9: COMPONENTS COMMUNICATION
➢Overview of Components Interaction
➢Share data between components by using Service
➢Component Interaction from Parent to Child.
➢Component Interaction from Child to Parent.
➢@ViewChild decorator overview
➢Components Interaction by using Event Emitter & Subject and ob servable
SECTION 10: EVENT EMITTER AND OTHER SPECIAL DIRECTIVES
➢What is Event Emitter?
➢When to use Event Emitter?
➢How to transfer data with Event Emitter?
➢How to create Custom Events and Trigger?
➢View Encapsulation Overview.
➢What is ng-content and its purpose?
➢ng-container Directive overview.
SECTION 11: TEMPLATE DRIVEN FORM IN ANGULAR
➢What is Template Driven Form?
➢Purpose of Form.
➢How to setup a form in Angular?
➢What is form control and how to set it?
➢What is ngForm?
➢How to Access form values?
➢What are the form states available in Angular?
➢Form Validations.
➢HTML5 Validation vs Angular form Validation.
➢How to set default values in form fields?
➢Setup One-way data binding in Angular.
SECTION 12: REACTIVE FORM IN ANGULAR
➢What is Reactive Form?
➢Difference between Template Drive & Reactive Form
➢How to sync view & Reactive form TS?
➢What is Reactive form control and how to set it?
➢How to attach Dynamic Validations?
➢How to get Reactive from Values?
SECTION 13: SERVICE AND DEPENDENCY INJECTION IN ANGULAR
➢What is Service in Angular?
➢Create & configure Service in Angular.
➢How to do Dependency Injection in Angular?
➢What is Singleton Object?
➢Multiple DI in single Class.
SECTION 14: ROUTING IN ANGULAR 9
➢What is Routing?
➢How Routing makes our App into SPA?
➢How to configure Routing in an Application?
➢Load our components dynamically based on url path.
➢How to create Child Route?
➢Navigating to other links programmatically.
➢Passing Parameter to the Routes.
➢Static Route vs Dynamic Route.
➢Fetching Route Params.
SECTION 15: HTTP & OBSERVABLE IN ANGULAR
➢How to establish HTTP request to Server side.
➢How HTTP Mechanism works?
➢What are the methods available in HTTP?
➢What is Observable &Observer?
➢What are the call back methods available in Observable?
➢How to create a Custom Observable?
➢What is next(), error() and complete()?
➢How to connect any backend &APIs?
➢What is CORS?
➢How to resolve CORS errors?
SECTION 16: AUTHORIZATION IN ANGULAR
➢Client side Authorization vs Server side Authorization.
➢How to create Guard in Angular?
➢Setup Route Guard.
➢Server side Authorization by using JWT Token.
➢HTTP interceptors.
SECTION 17: FILE UPLOAD IN ANGULAR
➢Angular form setups for File Upload.
➢Server side setups for Angular.
➢Multer NPM in node.
➢How to use Multer NPM as middleware in Node?
➢Attach the Multer middleware in server-sider outing.
SECTION 18: REAL-TIME PROJECT IN ANGULAR
➢Applying all the above in a real-time Shopping Cart Application.

More Related Content

Similar to Angular training-course-syllabus

Angular training-course-syllabus
Angular training-course-syllabus Angular training-course-syllabus
Angular training-course-syllabus Training Institute
 
Mean stack training-course-content
Mean stack training-course-contentMean stack training-course-content
Mean stack training-course-contentTraining Institute
 
Angular js for beginners
Angular js for beginnersAngular js for beginners
Angular js for beginnersMunir Hoque
 
Micro Service Architecture
Micro Service ArchitectureMicro Service Architecture
Micro Service ArchitectureEduards Sizovs
 
Angular from Zero to Mastery - Training (Intermediate)
Angular from Zero to Mastery - Training (Intermediate)Angular from Zero to Mastery - Training (Intermediate)
Angular from Zero to Mastery - Training (Intermediate)Smail LOUNES
 
Introduction to AngularJS
Introduction to AngularJSIntroduction to AngularJS
Introduction to AngularJSAnass90
 
2017 Microservices Practitioner Virtual Summit: Microservices at Squarespace ...
2017 Microservices Practitioner Virtual Summit: Microservices at Squarespace ...2017 Microservices Practitioner Virtual Summit: Microservices at Squarespace ...
2017 Microservices Practitioner Virtual Summit: Microservices at Squarespace ...Ambassador Labs
 
Angular 2 overview in 60 minutes
Angular 2 overview in 60 minutesAngular 2 overview in 60 minutes
Angular 2 overview in 60 minutesLoiane Groner
 
Everything You Need To Know About AngularJS
Everything You Need To Know About AngularJSEverything You Need To Know About AngularJS
Everything You Need To Know About AngularJSSina Mirhejazi
 
Step by Step - AngularJS
Step by Step - AngularJSStep by Step - AngularJS
Step by Step - AngularJSInfragistics
 
Integrating AngularJS into the Campus CMS
Integrating AngularJS into the Campus CMSIntegrating AngularJS into the Campus CMS
Integrating AngularJS into the Campus CMSTom Borger
 
Angular js
Angular jsAngular js
Angular jsFelixits
 
Angular js
Angular jsAngular js
Angular jsFelixits
 
Angular js- 1.X
Angular js- 1.XAngular js- 1.X
Angular js- 1.XNitin Giri
 
Workshop 13: AngularJS Parte II
Workshop 13: AngularJS Parte IIWorkshop 13: AngularJS Parte II
Workshop 13: AngularJS Parte IIVisual Engineering
 
Presentation on angular 5
Presentation on angular 5Presentation on angular 5
Presentation on angular 5Ramesh Adhikari
 
Angular interview questions
Angular interview questionsAngular interview questions
Angular interview questionsGoa App
 
Single Page Applications in SharePoint with Angular
Single Page Applications in SharePoint with AngularSingle Page Applications in SharePoint with Angular
Single Page Applications in SharePoint with AngularSparkhound Inc.
 

Similar to Angular training-course-syllabus (20)

Angular training-course-syllabus
Angular training-course-syllabus Angular training-course-syllabus
Angular training-course-syllabus
 
Mean stack training-course-content
Mean stack training-course-contentMean stack training-course-content
Mean stack training-course-content
 
Angular js for beginners
Angular js for beginnersAngular js for beginners
Angular js for beginners
 
Micro Service Architecture
Micro Service ArchitectureMicro Service Architecture
Micro Service Architecture
 
Angular from Zero to Mastery - Training (Intermediate)
Angular from Zero to Mastery - Training (Intermediate)Angular from Zero to Mastery - Training (Intermediate)
Angular from Zero to Mastery - Training (Intermediate)
 
Introduction to AngularJS
Introduction to AngularJSIntroduction to AngularJS
Introduction to AngularJS
 
Angular js firebase-preso
Angular js firebase-presoAngular js firebase-preso
Angular js firebase-preso
 
2017 Microservices Practitioner Virtual Summit: Microservices at Squarespace ...
2017 Microservices Practitioner Virtual Summit: Microservices at Squarespace ...2017 Microservices Practitioner Virtual Summit: Microservices at Squarespace ...
2017 Microservices Practitioner Virtual Summit: Microservices at Squarespace ...
 
Angular 2 overview in 60 minutes
Angular 2 overview in 60 minutesAngular 2 overview in 60 minutes
Angular 2 overview in 60 minutes
 
Everything You Need To Know About AngularJS
Everything You Need To Know About AngularJSEverything You Need To Know About AngularJS
Everything You Need To Know About AngularJS
 
Step by Step - AngularJS
Step by Step - AngularJSStep by Step - AngularJS
Step by Step - AngularJS
 
Integrating AngularJS into the Campus CMS
Integrating AngularJS into the Campus CMSIntegrating AngularJS into the Campus CMS
Integrating AngularJS into the Campus CMS
 
Angular js
Angular jsAngular js
Angular js
 
Angular js
Angular jsAngular js
Angular js
 
Angular Js Basics
Angular Js BasicsAngular Js Basics
Angular Js Basics
 
Angular js- 1.X
Angular js- 1.XAngular js- 1.X
Angular js- 1.X
 
Workshop 13: AngularJS Parte II
Workshop 13: AngularJS Parte IIWorkshop 13: AngularJS Parte II
Workshop 13: AngularJS Parte II
 
Presentation on angular 5
Presentation on angular 5Presentation on angular 5
Presentation on angular 5
 
Angular interview questions
Angular interview questionsAngular interview questions
Angular interview questions
 
Single Page Applications in SharePoint with Angular
Single Page Applications in SharePoint with AngularSingle Page Applications in SharePoint with Angular
Single Page Applications in SharePoint with Angular
 

More from Training Institute

tell us which cloud you prefer
tell us which cloud you prefertell us which cloud you prefer
tell us which cloud you preferTraining Institute
 
Big data-hadoop-training-course-content-content
Big data-hadoop-training-course-content-contentBig data-hadoop-training-course-content-content
Big data-hadoop-training-course-content-contentTraining Institute
 
Ui path training-course-content
Ui path training-course-contentUi path training-course-content
Ui path training-course-contentTraining Institute
 
Selenium training-course-content-syllabus-credo systemz
Selenium training-course-content-syllabus-credo systemzSelenium training-course-content-syllabus-credo systemz
Selenium training-course-content-syllabus-credo systemzTraining Institute
 
Python training-course-content
Python training-course-contentPython training-course-content
Python training-course-contentTraining Institute
 
Angular webinar - Credo Systemz
Angular webinar - Credo SystemzAngular webinar - Credo Systemz
Angular webinar - Credo SystemzTraining Institute
 

More from Training Institute (8)

tell us which cloud you prefer
tell us which cloud you prefertell us which cloud you prefer
tell us which cloud you prefer
 
Testing
TestingTesting
Testing
 
Big data-hadoop-training-course-content-content
Big data-hadoop-training-course-content-contentBig data-hadoop-training-course-content-content
Big data-hadoop-training-course-content-content
 
Ui path training-course-content
Ui path training-course-contentUi path training-course-content
Ui path training-course-content
 
Selenium training-course-content-syllabus-credo systemz
Selenium training-course-content-syllabus-credo systemzSelenium training-course-content-syllabus-credo systemz
Selenium training-course-content-syllabus-credo systemz
 
Python training-course-content
Python training-course-contentPython training-course-content
Python training-course-content
 
Aws training-course-content
Aws training-course-contentAws training-course-content
Aws training-course-content
 
Angular webinar - Credo Systemz
Angular webinar - Credo SystemzAngular webinar - Credo Systemz
Angular webinar - Credo Systemz
 

Recently uploaded

Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfAyushMahapatra5
 
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...PsychoTech Services
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajanpragatimahajan3
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfchloefrazer622
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingTeacherCyreneCayanan
 

Recently uploaded (20)

Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajan
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdf
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writing
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 

Angular training-course-syllabus

  • 1. Array, String, Number Manipulation Doing different challengeable Machine tests which are conducted in top MNCs. Skills: String Array yyyyy Object SetTimeout SetInterval al Forms DOM Manipulations Movie, Jokes & User APIs calls An app with Registration, login, access different APIs via AJAX, logout. Skills: Local Storage Session Storage JSON AJAX XHR HTTP Product Management in Angular A real-time project with Product Management which includes, Add, Edit, Delete and Search! Skills: Data Binding Inbuilt Directive Custom Directive Inbuilt Pipes Custom Pipes TD & Reactive Forms Auth, Weather, News & Zomato App A Project which accesses your JSON data and authenticate the credentials. Call Weather, News & Zomato APIs. Skills: Http Client RXJS Observable Routing Custom Headers RXJS Subject REAL-TIME PROJECTS
  • 2. REAL-TIME PROJECT - SHOPPING CART APPLICATION A real-time Shopping cart app from very scratch to Advanced level. The project includes Register, Login, Client- side Authorization, Server-side Authorization, Add Products, List products, Filter products by category wise, Add to cart, View cart, Update cart, Delete cart items, Search, View Product details, Logout. Technologies How to convert HTML app into Angular App, How to load external CSS, JS & Jquery, Routing, Route Guard, Dynamic Routing, Connect REST API, Observable, Subject, Behaviour Subject, Event Emitter, HTTP,Interceptor, Child Routes, File upload, Split app into different Modules, Eager Loading, Lazy Loading, Async Loading. Integrate Angular Material Module and UI Components The Real-time Project Demo - Live Preview
  • 3. TYPESCRIPT COURSE CONTENT SECTION 1: TYPESCRIPT INTRODUCTION ➢What is TypeScript? ➢Features of TypeScript. ➢How to compile TypeScript into JS? ➢What is Transpilation? Practical: ➢Installing Typescript Engine in Node. ➢Compiling TS code (source) to JS code(source). SECTION 2: NODE INTRODUCTION ➢What is Node? ➢Node Environment setups. ➢A Brief Node Introduction. ➢What is Node Modules? ➢What are the Types of Node Modules available? ➢What is Local & Global Module? SECTION 3: TYPESCRIPT ENVIRONMENT SETUPS ➢Install TypeScript Engine in Node. ➢Execute the 1stTypeScriptcode. ➢What iswatcher? ➢Introduction of ts-nodeNPM. Practical: ➢Practicing Watcher mode. SECTION 4: VARIABLES IN TS ➢Difference between Static & Dynamic type checking. ➢How to Declare & Define Variables inTS? ➢What is any inTS? ➢Difference between let &var. ➢Template string introduction. SECTION 5: DATATYPES IN TS ➢Brief Introduction of below types, •String •Number •Boolean •Array •Object •Tuple •Enum
  • 4. •Any •Void •Never •Null •Undefined Practical: ➢Practicing different types of Data types in TS. SECTION 6: DIFFERENT TYPES OF PARAMETERS IN TS ➢Difference between JS parameter & TS Parameter. ➢Let vs var vs const ➢Passing Parameters to the functions. ➢How to pass optional parameter? ➢What is Default Parameter? ➢How to use default parameter before required parameter? ➢Rest Parameter overview. Practical: ➢Passing all above parameters in a single function. SECTION 7: FEATURES IN TS. ➢Arrow functions. ➢Where to use Arrow functions? ➢Destructing an Array. ➢Destructing and Object. SECTION 8: OOPS IN TYPESCRIPT ➢What is Class? ➢What is Class definition?? ➢What is Object?? ➢How to Create Object? ➢Brief introduction about, •Property •Method •Constructor ➢What is Inheritance? ➢Different types of Inheritance in TS.? ➢Access modifiers in TS.? ➢Read only in TS.? ➢Static Property & Methods inTS. ➢Interface in TypeScript. Practical: ➢Practicing all opps in a real-time examples. ➢Converting JS function into TS Class with oops concepts.
  • 5. ANGULAR 9 TRAINING COURSE CONTENT SECTION 1: INTRODUCTION TO ANGULAR ➢What is Angular? ➢Difference between framework &Library? ➢History of Angular and its versions. ➢Why Angular? ➢Features of Angular. ➢What is Single Page Application? ➢Difference between SPA & Traditional Application. ➢What is MVC? ➢How MVC works in Client & Server sides? SECTION 2: ANGULAR 9 ENVIRONMENT SETUPS ➢What is Angular CLI? ➢Purpose of the CLI. ➢Angular CLI installation. ➢Create a Basic Angular App by using CLI. ➢Executing the Angular Application in the browser. ➢How an Angular app Bootstrapping? ➢Brief explanation about the structure of the Angular App. SECTION 3: MAIN BUILDING BLOCKS OF ANGULAR ➢An Overview of the below Building blocks of Angular •Modules •Components •Templates •Metadata •Data binding –Directives •Services •Dependency Injection. ➢What is Module & its importance? ➢What is Root Module and Child Module? SECTION 4: COMPONENTS IN ANGULAR 9 ➢What is Component? ➢ How to create a Component manually and through CLI? ➢What is Component decorator and its Meta data? ➢Component’s Structure overview. ➢Component Life cycle Hooks. ➢Components Interactions overview. ➢How to pass Data from Parent to Child & Child to Parent? SECTION 5: DATA BINDINGS AND EVENT BINDINGS IN ANGULAR 9 ➢What is Data Binding? ➢What is Two-way Data Binding? ➢String Interpolation. ➢Style Binding, Class Binding. ➢Overview of Event Binding. ➢Element reference and $event service in Angular. ➢Event Filtering SECTION 6: SERVICES IN ANGULAR 9 ➢What is Services? ➢Why should we use Services?
  • 6. ➢How to create Services in Angular? ➢Singleton Object -Overview ➢What is Dependency Injection? ➢How to use Dependency Injection? ➢What is providers? ➢What is@Injectable()? ➢What is HierarchicalDI? SECTION 7: DIRECTIVES & CUSTOM DIRECTIVES IN ANGULAR 9 ➢What is Directives? ➢What are the Different kind of Directives available in Angular? ➢Difference between Structural & Attribute Directives. ➢Overview of All Structural & Attribute Directives. ➢Difference between ngIf& hidden directives. ➢How to create Custom Attribute Directive? ➢How to create Custom Structural Directive? ➢How to pass Input property to the custom directive? ➢How to receive Input property from the custom directive? SECTION 8: PIPES IN ANGULAR 9 ➢What is Pipe in Angular? ➢Purpose of the Pipes. ➢Difference between Pipes &Directives. ➢Detailed explanation of the below Pipes, •Lowercase •Uppercase •Titlecase •Slice • Json •Number •Percent •Currency •Date ➢What is Pure Pipe & Impure Pipe? ➢How to create Custom Pipes? ➢What is chaining Pipes? ➢What is Parameterized Pipe? SECTION 9: COMPONENTS COMMUNICATION ➢Overview of Components Interaction ➢Share data between components by using Service ➢Component Interaction from Parent to Child. ➢Component Interaction from Child to Parent. ➢@ViewChild decorator overview ➢Components Interaction by using Event Emitter & Subject and ob servable SECTION 10: EVENT EMITTER AND OTHER SPECIAL DIRECTIVES ➢What is Event Emitter? ➢When to use Event Emitter? ➢How to transfer data with Event Emitter? ➢How to create Custom Events and Trigger? ➢View Encapsulation Overview. ➢What is ng-content and its purpose? ➢ng-container Directive overview.
  • 7. SECTION 11: TEMPLATE DRIVEN FORM IN ANGULAR ➢What is Template Driven Form? ➢Purpose of Form. ➢How to setup a form in Angular? ➢What is form control and how to set it? ➢What is ngForm? ➢How to Access form values? ➢What are the form states available in Angular? ➢Form Validations. ➢HTML5 Validation vs Angular form Validation. ➢How to set default values in form fields? ➢Setup One-way data binding in Angular. SECTION 12: REACTIVE FORM IN ANGULAR ➢What is Reactive Form? ➢Difference between Template Drive & Reactive Form ➢How to sync view & Reactive form TS? ➢What is Reactive form control and how to set it? ➢How to attach Dynamic Validations? ➢How to get Reactive from Values? SECTION 13: SERVICE AND DEPENDENCY INJECTION IN ANGULAR ➢What is Service in Angular? ➢Create & configure Service in Angular. ➢How to do Dependency Injection in Angular? ➢What is Singleton Object? ➢Multiple DI in single Class. SECTION 14: ROUTING IN ANGULAR 9 ➢What is Routing? ➢How Routing makes our App into SPA? ➢How to configure Routing in an Application? ➢Load our components dynamically based on url path. ➢How to create Child Route? ➢Navigating to other links programmatically. ➢Passing Parameter to the Routes. ➢Static Route vs Dynamic Route. ➢Fetching Route Params. SECTION 15: HTTP & OBSERVABLE IN ANGULAR ➢How to establish HTTP request to Server side. ➢How HTTP Mechanism works? ➢What are the methods available in HTTP? ➢What is Observable &Observer? ➢What are the call back methods available in Observable? ➢How to create a Custom Observable? ➢What is next(), error() and complete()? ➢How to connect any backend &APIs? ➢What is CORS? ➢How to resolve CORS errors? SECTION 16: AUTHORIZATION IN ANGULAR ➢Client side Authorization vs Server side Authorization. ➢How to create Guard in Angular?
  • 8. ➢Setup Route Guard. ➢Server side Authorization by using JWT Token. ➢HTTP interceptors. SECTION 17: FILE UPLOAD IN ANGULAR ➢Angular form setups for File Upload. ➢Server side setups for Angular. ➢Multer NPM in node. ➢How to use Multer NPM as middleware in Node? ➢Attach the Multer middleware in server-sider outing. SECTION 18: REAL-TIME PROJECT IN ANGULAR ➢Applying all the above in a real-time Shopping Cart Application.