Problem I am creating a small backend library that uses a persistent queue, where the queue is just lines in […]
Tag: rxjs
switchMap with array of Observables
Problem I’m trying Rxjs 5 to simplify some Node.js nested callbacks. I need to read a directory (fs.readdir), then read […]
Using RxJS Observables to mediate routes in nodejs
Problem I am learning to be a full stack developer and have been building out an application using Node JS […]
Video downloader app implemented in RxJs
Problem I have used multiple map/flatmap combinations. Could anybody help me with the review? var Rx = require(‘rx’); var RxNode […]
JavaScript and RxJS Password Strength Indicator
Problem This is my first time using RxJS (or any observable library). It seems to work okay but I’m not […]
Using RxJS Observables to mediate routes in nodejs
Problem I am learning to be a full stack developer and have been building out an application using Node JS […]
Typescript & rxJS group list of object by month/year and map to certain value
Problem I have class: export class DayValue { date: string; status: string; } and statusToPointsMap: public static map: Map<string, number> […]
Store first value of http request with rxjs but keep doing httprequest
Problem With RXJS library : I need to store values from the FIRST http request, but keep doing other http […]
Chaining 3 dependent HTTP request subscriptions one, which is polling
Problem Here is a function that triggers after selecting from a dropdown to choose the floor. As you can see, […]
switchMap with array of Observables
Problem I’m trying Rxjs 5 to simplify some Node.js nested callbacks. I need to read a directory (fs.readdir), then read […]