Angular CLI Basics Guide

1. New
    Angular.json
    Choose a CSS Preprocessor
    Add a Router Module
2. Serve
3. Generate
    Customizing the Generate Process
    Building Feature Modules
    Build NPM Libraries
    Generate a Universal App
4. Add
    Add Angular’s Service Worker
    Add a Third-Party Component Library
5. Test
6. Build
7. Additional Tricks
    Update to the Latest Angular Version
    Look up Documentation

Components - Ten Basic Concepts

1. What is a Component?
    Binding
    Interpolation
2. How to Load Components
3. Using Directives
4. Pipes
5. Don’t Touch the DOM
6. Smart vs Dumb Components (Container vs Presentational)
7. Lifecycle Hooks
8. Pass data into a component with @Input()
9. Emit custom events from a component via @Output()
10. Grab elements in the DOM with @ViewChild() or @ViewChildren

Router - The Basics and Beyond

1. Angular Router Fundamentals
    Creating Routes and Navigating
    Child Routes with Parameters
    Wildcard Route 404 Page
    Redirect Routes
    Change CSS on the Active Route
2. Guards
    CanActivate Example
    Preload Data with the Router Example
3. Lazy Loaded Routes

Reactive Forms Basics Guide

1. Reactive Forms Fundamentals
    What is a Reactive Form?
    Minimal Example
2. Nested Forms
    Nested Form Example
3. Dynamic Forms with FormArray
    FormArray Example
4. Form Validation
    Validated Form Example
5. Submitting Reactive Forms
    Submitted Form to Firestore Example

A Simple Explanation of NgModule

1. What’s the point of NgModule?
2. Imperative vs Declarative Component Loading
3. What’s an NgModule made out of?
4. Why use multiple NgModules?
5. How to Create an NgModule with the CLI
6. Types of NgModules
7. When should I refactor into a new feature module?

Sharing Data Between Components

1. Parent to Child: Sharing Data via Input
2. Child to Parent: Sharing Data via ViewChild
3. Child to Parent: Sharing Data via Output() and EventEmitter
4. Unrelated Components: Sharing Data with a Service

Lazy Loading Components

1. Create a new App with Routing
2. Generate the “Lazy” Module
3. Point the App Router to the Lazy Module
4. Verify Lazy Loading is Working

Debugging Angular Applications

1. Prevent Bugs with TypeScript
    Bad: Opting Out of TypeScript
    Good: Using TypeScript static typing
2. Using Debugger Statements to Stop JavaScript Execution
3. Inspect Data with the JSON pipe
4. Console Debugging
    probe
    profiler
5. Augury Chrome Plugin
6. Angular Logger
7. Debugging RxJS Observables

RxJS Top Ten - Code This, Not That