Courses

    Pages & Posts

      • IT Training
        • Amazon Cloud (AWS)
        • Analytics and Big Data
        • Blockchain
        • Cisco
        • Citrix
        • CompTIA Certifications
        • Cybersecurity
        • Development Tools
        • DevOps
        • F5
        • Google Cloud
        • IBM
        • Java
        • Juniper Networks
        • Linux
        • Microsoft
        • Microsoft ON-DEMAND
        • Mobile Computing
        • NetApp
        • Nutanix
        • Oracle
        • Salesforce
        • VMware
        • Web Development, HTML, and JavaScript
      • Business Training
        • Business Analysis
        • Enterprise Architecture
        • HIPAA Certification & Training
        • IT Governance
        • ITIL® Certification
        • Program / Project Management
        • Salesforce
        • Scrum & Agile
        • Seminars
      • Services
        • Cybersecurity Compliance and Risk Management
        • Enterprise Learning Solutions
        • IT Performance Management
        • Media Security Solutions
        • Microsoft Certificate Program
        • Returning Citizens Initiative
        • Rental Request Form
        • State & Local Government
      • Student Resources
        • Navigating Babbage Simmel Academy Courses
        • Student Guide / Daily Schedule
        • College Credit / Tuition Reimbursement
        • Student Policies
        • Testing & Certifications
        • Promotions
        • Area Hotels
        • Area Restaurants
      • Introduction to Angular 8 Programming

      Course Details

      Download PDF
      BSP-2888
      3 Days
      01/13/2020 $2,195.00
      Sign Up for This Class

      Introduction to Angular 8 Programming

      Share this course

      Tweet Share
      babsimLIVE Delivery

      This course covers all the essential topics and is designed to get students up and running with Angular 8 development in the shortest amount of time. Developers and Application Designers, as well as those who are tasked with supporting Angular 8 applications, will gain valuable knowledge required for success in their job roles while taking this course.  Angular 8 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 course will show you how to set up an end-to-end Angular 8 development environment to develop, build and host your Angular 8 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 8 code.


      In this Angular 8 training, attendees will learn how to:



      • 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
      • Audience
      • Available Dates

      Course Outline

      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
      • Summary

      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
      • Summary

      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 - usage
      • 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
      • Summary

      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
      • Summary

      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
      • Summary

      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
      • Summary

      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
      • Summary

      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
      • Summary

      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
      • Summary

      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
      • Summary

      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
      • Summary

      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
      • Summary

      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
      • Summary

      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
      • Summary

      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
      • Summary

      Audience

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

      Available Course Dates

      01/13/2020 10:00 am - 01/15/2020 6:00 pm babsimLive Delivery
      02/18/2020 10:00 am - 02/20/2020 6:00 pm babsimLive Delivery
      03/30/2020 10:00 am - 04/01/2020 6:00 pm babsimLive Delivery
      05/11/2020 10:00 am - 05/13/2020 6:00 pm babsimLive Delivery
      Click here to sign up for this class

      Related Courses

      Advanced Angular 8 Programming...

      This course covers various advanced topics of interest to experienced Angular de...

      View course details

      Comprehensive Angular 8 Programming...

      The Comprehensive Angular 8 Programming Training course covers all the essential...

      View course details

      Intermediate Angular 8 Programming...

      This intermediate Angular 8 training covers advanced topics of this next generat...

      View course details

      College Credit, CEUs, PDUs and CDUs
      When you take courses with the Babbage Simmel, be sure you get the credit you deserve. Curriculum offered by Babbage Simmel can earn you college credit, CEUs, PDUs or CDUs.

      College Credit
      Select curriculum offered by Babbage Simmel can be utilized for College Credit. For questions please E-Mail: info@babsim.com or call 614-481-4345.

      Continuing Education Units (CEUs)
      Continuing Education Units (CEUs) are nationally recognized standard units of measurement earned for satisfactory completion of qualified programs of continuing education. If you need more information about CEUs, please E-Mail: info@babsim.com or call 614-481-4345.

      Professional Development Units (PDUs)
      Professional Development Units (PDUs) can be issued by PMI® for formal learning activities related to project management. Project Management Professionals (PMPs®) are required to earn a minimum of 60 PDUs every 3 years to maintain certification. For more information about this program go to the PMI® web site or call 1-855 746 4849.

      Continuing Development Units (CDUs)
      CDUs may be earned by attending professional development (e.g. courses, seminars) offered by organizations endorsed by IIBA® and designated as an EEP vendor. As an IIBA Endorsed Education Provider (EEP) Babbage Simmel's IIBA® endorsed courses qualify for CDU credit. For more information about CDUs go the IIBA® web site or call 1-647-426-3735.

      Our babsimLIVE distance learning brings the classroom learning experience to you by seating you virtually into a real-life instructor-led classroom taught by award winning world-class instructors with other IT professionals like yourself. From the comfort of your home, workplace, or at the Babbage Simmel Columbus Campus, you acquire the training you need, when you want it, in the environment that is most comfortable for you to be successful.

      About Us Contact Us Blog Find A Course

      © Copyright 2019 • Babbage Simmel. All Rights Reserved. Columbus Web Design by Jetpack | Privacy Policy