Overview of Angular
Overview of Angular
2
Introduction
3
Introduction
AngularJS Angular
4
Introduction
5
Angular Architecture
6
Angular Architecture
⎊ The architecture diagram identifies the eight main building blocks of an Angular application:
1. Module: denoted by @NgModule and used to declare each thing you create in application
and group them together.
2. Components: the piece of the screen; visually and logically and denoted by @Component.
3. Templates: a template is nothing but a form of HTML tags that tells Angular about how to
render the component.
7
Angular Architecture
8
Angular Environment Installation
9
Angular CLI
⎊ Angular CLI is a command-line interface tool that you use to initialize, develop, scaffold, and
maintain Angular applications. You can use the tool directly in a command shell, or indirectly
through an interactive UI such as Angular Console.
Example :
10
Creating First Application
$ cd ~
$ ng new angular-example
$ cd angular-example
$ ng serve
11
References
● https://www.freecodecamp.org/news/angular-8-tutorial-in-easy-steps/
● https://medium.com/@cyrilletuzi/understanding-angular-modules-ngmodule-and-their-scopes-81e4ed6f7407
● https://www.edureka.co/blog/angular-tutorial/
● https://medium.com/@cyrilletuzi/architecture-in-angular-projects-242606567e40
12
THANKS!
Please try hard to study..!
13