Top "Rxjs" questions

The Reactive Extensions for JavaScript (RxJS) is a set of libraries for composing asynchronous and event-based programs using observable collections and Array Extras style composition.

RxJS sequence equivalent to promise.then()?

I used to develop a lot with promise and now I am moving to RxJS. The doc of RxJS doesn't …

javascript rxjs
Angular 2 Observable with multiple subscribers

I have an angular 2 service that fetch data from an API this service has 3 subscribers (defined in Components) each doing …

angular rxjs
RxJs catch error and continue

I have a list of items to parse, but the parsing of one of them can fail. What is the "…

javascript rxjs reactivex
Error: Can't resolve 'rxjs/add/operator/map'

This is app.module.ts I have tried to done the Import of map in different project and it worked …

angular rxjs rxjs6
Child listens for parent event in Angular 2

In angular docs there is a topic about listening for child events from parents. That's fine. But my purpose is …

javascript typescript angular rxjs eventemitter
Property 'toPromise' does not exist on type 'Observable<Response>'

import { Headers, Http } from '@angular/http'; @Injectable() export class PublisherService{ private publishersUrl = 'app/publisher'; constructor(private http: Http) { } getPublishers(): …

angular typescript rxjs angular2-services
RxJs Array of Observable to Array

For a Web-Application written with Angular2 in TypeScript, I need to work with RxJs Observables. As I never used rxjs …

typescript angular rxjs observable
How to pass observable value to @Input() Angular 4

I am new to angular and I have the following situation which is I have a service getAnswers():Observable<…

angular typescript rxjs angular2-observables angular2-decorators
Subject vs BehaviorSubject vs ReplaySubject in Angular

I've been looking to understand those 3: Subject BehaviorSubject ReplaySubject I would like to use them and know when and why, …

javascript angular rxjs reactive-programming angular2-observables
When to use asObservable() in rxjs?

I am wondering what is the use of asObservable: As per docs: An observable sequence that hides the identity of …

rxjs rxjs5