Rxjs Operators
RxJS - Part 6 - Chat application with RxJS
Introduction In the first post of RxJS series we talked about reactive programming and benefits or RxJS. Second post covered Observable and how we can effectively use and manipulate Observables. After that, in third post we tried to get familiar with RxJS operators. We tried to briefly cover the error handling subject in the fourth post.
RxJS - Part 4 - Operators
RxJS Operators introduction This time we are going to talk about operators. If you are not familiar with RxJS you should read first post in the series - introductory post. There are many different ways to deal with asynchronous data. We could use callback functions or promises. Also, we could use generators and make our life easier by writing code that deals with asynchronous data in a synchronous manner. However, when we are using RxJS, operators are primary tool for manipulating and dealing with data. Consequently, main benefit of RxJS is various range of operators it supports.