HOME > Development > Hands-On RxJS for Web Development_1

Hands-On RxJS for Web Development_1

  • Development
  • Mar 08, 2025
SynopsisHands-On RxJS for Web Development, available at $39.99, has a...
Hands-On RxJS for Web Development_1  No.1

Hands-On RxJS for Web Development, available at $39.99, has an average rating of 3.95, with 35 lectures, based on 28 reviews, and has 224 subscribers.

You will learn about Work with the modern Reactive Extension event-based programming approach in JS Use real-world examples of development practices to solve issues with less code Easily implement retry on error or repeat logic for your HTTP request-ordering problems with RxJS Handle HTTP requests with a few lines of code Create scalable app architectures and organize convenient inter-component data flows Build easily-updatable web components and combine the latest ZIP operators Implement RxJS solutions in the popular modern Angular framework Use RxJS patterns and anti-patterns to improve your code maintainability This course is ideal for individuals who are The ideal target users for this video would be JavaScript developers who want to create Scalable javascript application by using Reactive functional programming techniques witjh RxJS. or This course offers a quick way to become familiar with Reactive Programming concepts and start using them in real-life tasks with the RxJS library. The course is focused on using RxJS for Reactive web UI in vanilla JS and Angular apps. It is particularly useful for The ideal target users for this video would be JavaScript developers who want to create Scalable javascript application by using Reactive functional programming techniques witjh RxJS. or This course offers a quick way to become familiar with Reactive Programming concepts and start using them in real-life tasks with the RxJS library. The course is focused on using RxJS for Reactive web UI in vanilla JS and Angular apps.

Enroll now: Hands-On RxJS for Web Development

Summary

Title: Hands-On RxJS for Web Development

Price: $39.99

Average Rating: 3.95

Number of Lectures: 35

Number of Published Lectures: 35

Number of Curriculum Items: 35

Number of Published Curriculum Objects: 35

Original Price: $109.99

Quality Status: approved

Status: Live

What You Will Learn

  • Work with the modern Reactive Extension event-based programming approach in JS
  • Use real-world examples of development practices to solve issues with less code
  • Easily implement retry on error or repeat logic for your HTTP request-ordering problems with RxJS
  • Handle HTTP requests with a few lines of code
  • Create scalable app architectures and organize convenient inter-component data flows
  • Build easily-updatable web components and combine the latest ZIP operators
  • Implement RxJS solutions in the popular modern Angular framework
  • Use RxJS patterns and anti-patterns to improve your code maintainability
  • Who Should Attend

  • The ideal target users for this video would be JavaScript developers who want to create Scalable javascript application by using Reactive functional programming techniques witjh RxJS.
  • This course offers a quick way to become familiar with Reactive Programming concepts and start using them in real-life tasks with the RxJS library. The course is focused on using RxJS for Reactive web UI in vanilla JS and Angular apps.
  • Target Audiences

  • The ideal target users for this video would be JavaScript developers who want to create Scalable javascript application by using Reactive functional programming techniques witjh RxJS.
  • This course offers a quick way to become familiar with Reactive Programming concepts and start using them in real-life tasks with the RxJS library. The course is focused on using RxJS for Reactive web UI in vanilla JS and Angular apps.
  • Web application code can get? tangled up, which makes it hard to test and maintain. Also, asynchronous? computations and HTTP requests have to be properly managed. However,? with RxJS 6 you can unify, filter, and transform these streams with? ease. By introducing RxJS 6 into your code, you can build clean and? fault-tolerant web applications.

    This course shows you how to handle work tasks and issues with RxJS 6.? It helps you develop the skills you need to create Reactive applications? with RxJS 6. With this course, you’ll enter the Reactive world by using? Angular and vanilla JS. You will learn to execute asynchronous event? handling techniques using RxJS 6.

    By the end of the course, you’ll be saving precious development time by? using RxJS 6. You’ll scale your own applications effectively, and use? Angular framework that relies on RxJS 6.?

    About the Author :

    Oleksandr Poshtaruk is a? frontend developer and a part-time Angular and RxJS mentor on? codementor .io. He has worked on commercial projects using Angular 2/4? and RxJS for the past 3? years. He has over 17 years’ experience in the? commercial IT industry as a system engineer and developer. He is a Stack? Overflow activist with 1000+ score points for Angular and RxJS. He? holds down a senior front-end developer position in tonicforhealth. He is also a conference speaker at JS-fwdays-2018 on RxJS solutions.?

    Course Curriculum

    Chapter 1: Dive into the RxJS Environment

    Lecture 1: The Course Overview

    Lecture 2: Explore RxJS – What and Why?

    Lecture 3: Node.js Installation

    Lecture 4: Angular Demo Project Starter

    Lecture 5: Forking RxJS Playground on JSFiddle

    Chapter 2: Implementing Observables to Reduce Code Complexities

    Lecture 1: What Are Observables and How to Create Them?

    Lecture 2: Hands-On Cold and Hot Observables

    Lecture 3: Subjects – Emit Your Own Data to Multiple Subscribers

    Lecture 4: Observables in Application State Management (ngRxStore)

    Lecture 5: Benefits of Reactive Updating Components View on Data Change

    Chapter 3: Working with Operators for Stream Data Processing

    Lecture 1: Working with Pipe-able Operators to Decrease App Bundle Size?

    Lecture 2: Modifying Data with ‘map’

    Lecture 3: Filtering Data with ‘filter’

    Lecture 4: Handle Errors As Usual Data – with ‘catchError’

    Lecture 5: Preventing Unneeded Recalculations with ‘distinctUntilChanged’

    Lecture 6: Operate All Emitted Values with ‘scan’

    Lecture 7: Data Manipulation with ‘buffer’

    Chapter 4: Combining Streams with Operators

    Lecture 1: Using Flattening Operators

    Lecture 2: Switch to the Latest Observable Data with switchMap to Prevent Race-Conditions

    Lecture 3: Interleave Application Events with mergeMap and mergeAll

    Lecture 4: Fetching Delayed API-Call Results with mergeMap and Subjects

    Lecture 5: Practicing Processing Data Chunks with mergeAll and bufferCount

    Lecture 6: Practicing CRUD Operations with concatMap

    Lecture 7: Using zip and combineLatest for Component State-Switching

    Lecture 8: Fixing Backend Drawbacks with forkJoin: Rx Analog of Promise.all

    Chapter 5: Practicing the Retry Logic

    Lecture 1: Redo Errored Http Requests with ‘retry’ Operator with One Line of Code!

    Lecture 2: Make Repetitive Http Calls with the ‘repeat’Operator

    Lecture 3: Take Advantage of retryWhen & repeatWhen Operators for Complicated Repeat Logic

    Chapter 6: Practicing the Unsubscribe Policy

    Lecture 1: Why Unsubscribe? Prevent Memory Leaks with the Correct Unsubscribe Policy

    Lecture 2: Practicing first, skip, take, takeUntil, and takeWhile Operators

    Chapter 7: Fixing Anti-Patterns and Practicing Unit Tests

    Lecture 1: Fixing RxJS Anti-Patterns to Improve Code Maintainability

    Lecture 2: Control the Timing Strategy of Event Emissions with Schedulers

    Lecture 3: Unit Tests for Observable Streams: Rx.BehaviorSubject and Rx.Marbles Techniques

    Lecture 4: Using Multicast Operators to Prevent Requesting Same Data Again forEach Observer

    Lecture 5: Debugging Tips

    Instructors

  • Hands-On RxJS for Web Development_1  No.2
    Packt Publishing
    Tech Knowledge in Motion
  • Rating Distribution

  • 1 stars: 0 votes
  • 2 stars: 4 votes
  • 3 stars: 5 votes
  • 4 stars: 9 votes
  • 5 stars: 10 votes
  • Frequently Asked Questions

    How long do I have access to the course materials?

    You can view and review the lecture materials indefinitely, like an on-demand channel.

    Can I take my courses with me wherever I go?

    Definitely! If you have an internet connection, courses on Udemy are available on any device at any time. If you don’t have an internet connection, some instructors also let their students download course lectures. That’s up to the instructor though, so make sure you get on their good side!