Skip to content

yuvraj1510/angular-crash-course

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

angular-crash-course

What is Angular?

  • Angular is a framework for building modern single-page application.
  • Official docs tutorials - www.angular.io

Traditional Application

  • Each user action results in a full HTML page load.
sequenceDiagram
Browser->>Server: Full HTML Page Loads
Server-->>Browser: 
Loading

Single-Page Applicaton

  • A web application that is composed of a single page
  • Based on user actions, the application page is updated
sequenceDiagram
Browser->>Server: REST API for data
Server-->>Browser: Partioanl Page updates (Client side only)
Loading

Example of Single-Page Applications

Features of Angular

  • Component-based framework
  • Clean seperation of template coding and application logic
  • Built-in support for data-binding and dependency injection
  • Support responsive web design and modern frameworks such as Bootstrap, Google Material Design (Angular Material) and others

Key Terms

Term Definition
Component Main player in an Angular application. Hash two parts:
1. View for user interface
2. Class that contains application logic/event handling for the view
View Template The user interface for the component
Static HTML with dynamic elements
Directive Adds custom behavior to HTML elements
Used for looping, conditionals etc
Service Helper class that provides desired functionality
Retrieving data from a server, performing a calculation, validation etc
Module A collection of related components, directives, services etc

Creating an Angular Project

Angular CLI

# Install Angular CLI

> npm install --location=global @angular/cli@14.0.7
> ng version
> ng help

# Creating New Project

> ng new <project-name>
> ng new my-first-angular-project

# Running the Angular App

> cd <project-name>
> cd my-first-angular-project
> ng serve

# Changing the server port
> ng serve --port 5100

# Creating new component
> ng generate component <component name>
> ng generate component sales-person-list

# Generate a Class
> ng generate class <Class name>
> ng generate class sales-person-list/SalesPerson

Angular - Behind the Scenes

Loading Angular App

  • src/index.html
  • src/app/app.component.ts