Top "Rxjs6" questions

RxJS6 is version 6 of Reactive Extensions for JavaScript, with some added changes in websocket, testing and bug fixes.

I dont get rxjs 6 with angular 6 with interval, switchMap, and map

I want to update my rxjs code to 6 got I don't get it. Before I had the below that wouth …

angular rxjs rxjs6
Angular/RxJS 6: How to prevent duplicate HTTP requests?

Currently have a scenario where a method within a shared service is used by multiple components. This method makes an …

angular rxjs angular6 rxjs6
Angular how do I filter the data from an observable using rxjs pipe

I make a call to a method called getWorkOrders() in my service file which in turn makes a call to …

angular rxjs6
How to propagate errors through catchError() properly?

I wrote a function that is pipe-able: HandleHttpBasicError<T>() { return ((source:Observable<T>) => { return source.…

rxjs angular-http rxjs6
How to import rxjs timer in angular 6?

I tried importing rxjs timer on my angular 6 project like import { timer } from 'rxjs/observable/timer'; I also tried it …

angular timer rxjs6
Angular : how to call finally() with RXJS 6

I was using RXJS 5, now as I upgraded it to 6, I am facing some problems. Previously I was able to …

angular rxjs angular6 rxjs6
Angular 6: Property 'of' does not exist on type 'typeof Observable'

I am using Angular 6 using "rxjs": "^6.0.0", ERROR : Property 'of' does not exist on type 'typeof Observable'. import { Injectable } from '@…

rxjs angular6 rxjs6
How do you sort an Observable<Item[]> in Angular 6 with rxjs 6?

I just want to sort data on an observable of my class type 'Category'. So Observable < Category[] > I …

typescript angular6 rxjs6
How to make a sequence of http requests in Angular 6 using RxJS

I've been looking for a solution all over the web, but couldn't find anything that fits my user case. I'm …

angular typescript rxjs angular-httpclient rxjs6
rxjs 6 Property 'of' does not exist on type 'typeof Observable'

Just moved from rxjs 5/angular 5 to rxjs 6/ angular 6, went through this migration-guide. Can't seem to figure out what it should …

angular rxjs rxjs6