Search our courses
Training

The Introduction to Angular 7 Development training course covers all the essential topics and is designed to get students up and running with Angular development in the shortest amount of time. Developers and Application Designers as well as those who are tasked with supporting Angular applications will gain valuable knowledge required for success in their job roles while taking this course.  Angular is a JavaScript framework that supports the development of single-page applications that run in browsers and can also be used to develop responsive web sites and hybrid mobile applications.

This Introduction to Angular 7 Development training course will show you how to set up an end-to-end Angular development environment to develop, build and host your Angular applications. Details of the Typescript language, essential to Angular development, are also covered. From there the course introduces you to various building blocks of Angular applications including: Components, Directives, Services and Pipes. Form development is covered along with the essentials of form validation and custom validators. The Angular HttpClient, which allows you to make network calls from your application, is covered in detail along with how to use Observable objects which allow you to integrate reactive programming paradigms.
The course includes labs for each major topic that allow you to get hands-on experience programming and troubleshooting Angular code.


What you'll learn:

  •     Set up a complete Angular development environment
  •     Develop single page applications
  •     Code with TypeScript
  •     Work with Angular CLI to create applications and generate components
  •     Create Components, Directives, Services, Pipes,  and Custom Validators
  •     Develop component templates that include Angular directives and bindings.  
  •     Retrieve and post data to network applications and RESTful services
  •     Format data for display using Angular Pipes
  •     Develop Template based and Reactive forms to collect data
  •     Navigate between multiple view screens using the Angular component router

Introduction to Angular 7 Development

Course Code

GTIT47

Duration

3 Days

Course Fee

POA

Accreditation

N/A

Target Audience

  • This Introduction to Angular 7 Development training course is aimed at web developers who are familiar with JavaScript and HTML, and who want to start using Angular 7 to create structured and maintainable web apps.

Attendee Requirements

  • Web development experience using HTML, CSS and JavaScript is required to get the most out of this Angular course.  Knowledge of the browser DOM is also useful. Prior Angular experience, with AngularJS or the current version of Angular, is not required.

Expand all

Course Description

The Introduction to Angular 7 Development training course covers all the essential topics and is designed to get students up and running with Angular development in the shortest amount of time. Developers and Application Designers as well as those who are tasked with supporting Angular applications will gain valuable knowledge required for success in their job roles while taking this course.  Angular is a JavaScript framework that supports the development of single-page applications that run in browsers and can also be used to develop responsive web sites and hybrid mobile applications.

This Introduction to Angular 7 Development training course will show you how to set up an end-to-end Angular development environment to develop, build and host your Angular applications. Details of the Typescript language, essential to Angular development, are also covered. From there the course introduces you to various building blocks of Angular applications including: Components, Directives, Services and Pipes. Form development is covered along with the essentials of form validation and custom validators. The Angular HttpClient, which allows you to make network calls from your application, is covered in detail along with how to use Observable objects which allow you to integrate reactive programming paradigms.
The course includes labs for each major topic that allow you to get hands-on experience programming and troubleshooting Angular code.


What you'll learn:

  •     Set up a complete Angular development environment
  •     Develop single page applications
  •     Code with TypeScript
  •     Work with Angular CLI to create applications and generate components
  •     Create Components, Directives, Services, Pipes,  and Custom Validators
  •     Develop component templates that include Angular directives and bindings.  
  •     Retrieve and post data to network applications and RESTful services
  •     Format data for display using Angular Pipes
  •     Develop Template based and Reactive forms to collect data
  •     Navigate between multiple view screens using the Angular component router
Course Outline

Chapter 1. Introducing Angular

  •     What is Angular?
  •     Central Features of the Angular Framework
  •     Why Angular?
  •     Building Blocks of an Angular Application
  •     Basic Architecture of an Angular Application
  •     Installing and Using Angular
  •     A Basic Angular Application
  •     Anatomy of a Basic Application
  •     The Main Component File
  •     The Application Module File
  •     The index.html File
  •     The Bootstrap File
  •     Running the Application
  •     Building the Application

Chapter 2. Development Setup of Angular

  •     Angular Development Lifecycle
  •     Angular is Modular
  •     What is Node.js?
  •     Installing Node.js and NPM
  •     Node Package Manager (NPM)
  •     Package Descriptor File - package.json
  •     Semantic Version Numbering
  •     Package Version Numbering Syntax
  •     Updating Packages
  •     Uninstalling Packages
  •     Installing Angular Packages
  •     Angular CLI
  •     Creating a New Project
  •     Angular
  •     Development
  •     Dependencies
  •     TypeScript Typings
  •     Testing Tools
  •     Development Web Server
  •     Configuring the Web Server
  •     The Build System
  •     Configuring the Build

Chapter 3. Introduction to TypeScript and ES6

  •     Programming Languages for Use with Angular
  •     TypeScript Syntax
  •     Programming Editors
  •     The Type System – Defining Variables
  •     The Type System – Defining Arrays
  •     Type in Functions
  •     Type Inference
  •     The Type System – Classes & Objects
  •     Class Constructors
  •     Class Constructors – Alternate Form
  •     Interfaces
  •     Working with ES6 Modules
  •     Visibility Control
  •     var
  •     ,
  •     let
  •     and
  •     const -
  •     Defined
  •     var
  •     ,
  •     let
  •     and
  •     const -
  •     U
  •     sage
  •     Arrow Functions
  •     Arrow Function Compact Syntax
  •     Arrow Function and Caller Context
  •     Template Strings
  •     Template Strings – Variables and Expressions
  •     Template Strings – Multiline
  •     Generics - Class
  •     Generics - Methods
  •     Generics - Restricting Types
  •     Generics - Restricting Types: Example
  •     TypeScript Transpilation

Chapter 4. Components in Angular

  •     What is a Component?
  •     An Example Component
  •     The Component Class
  •     Adding a Component to Its Module
  •     Creating a Component Using Angular CLI
  •     Developing a Simple Login Component
  •     Component Template
  •     Login Component: Add HTML
  •     The HTML Component Template
  •     The templateUrl property
  •     Login Component: Add CSS Styling
  •     Login Component: Hook Up Input Fields and Button
  •     Login Component: Fields & Button in the Component Class
  •     Component Decorator Properties
  •     Component Hierarchy
  •     The Application Root Component
  •     Using a Regular Component
  •     The Build System
  •     Component Lifecycle Hooks
  •     Using a Lifecycle Hook:
  •     OnInit

Chapter 5. Data and Event Binding

  •     Binding Syntax
  •     One-Way Output Binding
  •     Binding Displayed Output Values
  •     Setting Component Properties
  •     More About Setting Properties
  •     Setting DOM Element Properties
  •     Event Binding
  •     Binding Events Examples
  •     Firing Event from a Component
  •     @Output() Example - Child Component
  •     @Output() Example - Parent Component
  •     Two-Way Binding of Input Fields
  •     Input Binding Examples
  •     Two Way Binding in a Component
  •     Use Two Way Binding
  •     Breaking Down ngModel

Chapter 6. Attribute Directives

  •     What are Attribute Directives
  •     Apply Styles by Changing CSS Classes
  •     Changing Classes – Example
  •     Applying Styles Directly
  •     Applying Styles Directly - Example
  •     Controlling Element Visibility
  •     Setting Image Source Dynamically
  •     Setting Hyperlink Source Dynamically
  •     Writing a Custom Attribute Directive
  •     Using a Custom Attribute Directive
  •     Supplying Input to a Directive
  •     Handling Event from a Custom Directive

Chapter 7. Structural Directives

  •     Structural Directives
  •     Adding and Removing Elements Dynamically
  •     If-Else Syntax of ngIf
  •     Looping Using ngFor
  •     ngFor - Basic Example
  •     Creating Tables with ngFor
  •     ngFor Local Variables
  •     Manipulating the Collection
  •     Example - Deleting an Item
  •     Swapping Elements with ngSwitch
  •     ngSwitch - Basic Syntax

Chapter 8. Template Driven Forms

  •     Template Driven Forms
  •     Importing Forms Module
  •     A Basic Angular Form
  •     Binding Input Fields
  •     Accessing the NgForm Directive
  •     Binding the Form Submit Event
  •     The Submit Function
  •     Basic HTML5 Validation - "required" Attribute
  •     HTML5 vs. Angular Validation
  •     Angular Validators
  •     The NgModel Directive
  •     Controlling when validation is applied
  •     Displaying
  •     Form
  •     Validation State
  •     Displaying
  •     Field
  •     Validation State
  •     Displaying Validation State Using Classes
  •     Disabling Submit when Form is Invalid
  •     Submitting the Form
  •     Binding to Object Variables
  •     Binding to Object Variables - Code
  •     Additional Input Types
  •     Checkboxes
  •     Select (Drop Down) Fields
  •     Rendering Options for Select (Drop Down)
  •     Date fields
  •     Radio Buttons

Chapter 9. Reactive Forms

  •     Reactive Forms Overview
  •     The Building Blocks
  •     Import ReactiveFormsModule
  •     Construct a Form
  •     Design the Template
  •     FormControl Constructor
  •     Getting Form Values
  •     Setting Form Values
  •     The Synchronous Nature
  •     Subscribing to Input Changes
  •     Validation
  •     Built-In Validators
  •     Showing Validation Error
  •     Custom Validator
  •     Using a Custom Validator
  •     Sub FormGroups - Component Class
  •     Sub FormGroups - HTML Template
  •     Why Use Sub FormGroups

Chapter 10. Angular Modules

  •     Why Angular Modules?
  •     But, We Already Had ES6 Module
  •     Angular Built-in Modules
  •     The Root Module
  •     Feature Modules
  •     Create Feature Module Using CLI
  •     The Module Class
  •     @NgModule Properties
  •     Using One Module From Another
  •     Importing BrowserModule or CommonModule
  •     Lazy-Loaded Modules
  •     How to Organize Modules?
  •     Third Party Modules

Chapter 11. Services and Dependency Injection

  •     What is a Service?
  •     Creating a Basic Service
  •     What is Dependency Injection?
  •     What Dependency Injection Looks Like
  •     Injectors
  •     Injector Hierarchy
  •     Register a Service with a Module Injector
  •     Registering a Service with the Root Injector
  •     Registering a Service with a Component's Injector
  •     Where to Register a Service?
  •     Dependency Injection in Other Artifacts
  •     Providing an Alternate Implementation
  •     Dependency Injection and @Host
  •     Dependency Injection and @Optional

Chapter 12. HTTP Client

  •     The Angular HTTP Client
  •     Using The HTTP Client - Overview
  •     Importing HttpClientModule
  •     Simple Example
  •     Service Using HttpClient
  •     ES6 Import Statements
  •     Making a GET Request
  •     What does an Observable Object do?
  •     Using the Service in a Component
  •     The PeopleService Client Component
  •     Error Handling
  •     Making a POST Request
  •     Making a PUT Request
  •     Making a DELETE Request

Chapter 13. Pipes and Data Formatting

  •     What are Pipes?
  •     Built-In Pipes
  •     Using Pipes in HTML Template
  •     Chaining Pipes
  •     Using Pipes in Code
  •     Internationalized Pipes (i18n)
  •     Loading Locale Data
  •     Decimal Pipe
  •     Currency Pipe
  •     Custom Pipes
  •     Custom Pipe Example
  •     Using Custom Pipes
  •     Using a Pipe with ngFor
  •     A Filter Pipe
  •     A Sort Pipe
  •     Pipe Category: Pure and Impure
  •     Pure Pipe Example
  •     Impure Pipe Example

Chapter 14. Introduction to Single Page Applications

  •     What is a Single Page Application (SPA)
  •     Traditional Web Application
  •     SPA Workflow
  •     Single Page Application Advantages
  •     HTML5 History API
  •     SPA Challenges
  •     Implementing SPA's Using Angular

Chapter 15. The Angular Component Router

  •     The Component Router
  •     View Navigation
  •     The Angular Router API
  •     Creating a Router Enabled Application
  •     Hosting the Routed Component
  •     Navigation Using Links and Buttons
  •     Programmatic Navigation
  •     Passing Route Parameters
  •     Navigating with Route Parameters
  •     Obtaining the Route Parameter Values
  •     Retrieving the Route Parameter Synchronously
  •     Retrieving a Route Parameter Asynchronously
  •     Query Parameters
  •     Supplying Query Parameters
  •     Retrieving Query Parameters Asynchronously
  •     Problems with Manual URL entry and Bookmarking

 

Lab Exercises

    Lab 1. Introduction to Angular
    Lab 2. Introduction to TypeScript
    Lab 3. Introduction to Components
    Lab 4. Create the Subscription Form Component
    Lab 5. Understanding Data Binding
    Lab 6. One Way Data Binding in a Custom Component
    Lab 7. Using Basic Angular Directives
    Lab 8. Using Structural Directives
    Lab 9. Custom Attribute Directive
    Lab 10. Template Driven Form
    Lab 11. Validation of a Template Driven Form
    Lab 12. Reactive Forms
    Lab 13. Service and Dependency Injection
    Lab 14. HTTP Client Development
    Lab 15. Using Pipes
    Lab 16. Basic Single Page Application Using Router

Learning Path
Ways to Attend
  • Attend a public course, if there is one available. Please check our schedule, or register your interest in joining a course in your area.
  • Private onsite Team training also available, please contact us to discuss. We can customise this course to suit your business requirements.

Private Team Training is available for this course

We deliver this course either on or off-site in various regions around the world, and can customise your delivery to suit your exact business needs. Talk to us about how we can fine-tune a course to suit your team's current skillset and ultimate learning objectives.

Private Team Training | Contact us

Technical ICT learning & mentoring services

Private Team Training

Our instructors are specialist consultants with vast real world experience and expertise allowing them to design and deliver client-focused courses for your organisation.

Learn more about our Private Team Training

What Our Clients Say

"Absolutely fantastic training. Thoroughly enjoyed it thanks to our highly enthusiastic tutor.  It wouldn't be an understatement to say that it was the best professional training that I have ever received."

 

Customised Linux with Networking

Live Online -  February 2022

 

"The course content was very good. When needed, the Instructor was extending the content of the course with hints and tips to help us understand different topics that were covered in the course."

 

Kubernetes Administration Certification - GTLFK

Live Online June 2021

 

 

 

“The course was held at the highest possible standards, the instructor was excellent, well prepared, well informed, and clearly an SME. Top marks.”

 

Professional Cloud Service Manager - GTC13

Live Online December 2021

 

“Very engaging and practical course so hope to be able to put the learning into practice.”

 

Being Agile in Business - GTBAB

Live Online September 2021

 

“Great instructor, who encouraged active participation. The breakout groups and exercises kept the group engaged and the content relevant to our own products”.

 

Site Reliability Engineering Foundation - GTDSRE

Live Online January 2022

 

 

 

"Intelligence is the ability to avoid doing work, yet
getting the work done"

Linus Torvalds, creator of Linux and GIT

Technical ICT learning & mentoring services

About GuruTeam

GuruTeam is a high-level ICT Learning, Mentoring and Consultancy services company. We specialise in delivering instructor-led on and off-site training in Blockchain, Linux, Cloud, Big Data, DevOps, Kubernetes, Agile, Software & Web Development technologies. View our Testimonials

Download our eBrochure
Our Accreditation Partners
  •  
  •  
  •  

 

Upcoming Courses

Kubernetes Administration

11th - 14th March 2024

26th - 29th March 2024

Live Online

 

This Kubernetes Administration Certification training course is suitable for anyone who wants to learn the skills necessary to build and administer a Kubernetes cluster

Learn More

RUST

11th - 14th March 2024

26th - 29th March 2024

 Live Online

This course will help you understand what Rust applications look like, how to write Rust applications properly, and how to get the most out of the language and its libraries.

Learn More

Introduction to Python 3 

19th - 21st March 2024

9th - 11th April 2024

7th - 9th May 2024

   4th - 6th June 2024

 

Live Online

This Introduction to Python 3 training course is designed for anyone who needs to learn how to write programs in Python or support/modify existing programs.

 

Learn More

 GO LANG TRAINING

11th - 14th March 2024

26th - 29th March 2024

 

Live Online        

 

This Go language programming training course will help you understand how Go works, and immediately be more productive. If you are building a team using Go, this will be a great opportunity to get your team on the same page and speaking the same language. Innovative lab exercises and code samples are provided to reinforce skills and quickly master the topics.

Learn More

Newsletter

Stay up to date, receive updates on scheduled dates, new courses, offers, and events.

Subscribe to our Newsletter