DEV Community

Cover image for Angular app to understand rxjs operators
Salim Chemes
Salim Chemes

Posted on

Angular app to understand rxjs operators

One of the most complicated things on reactive development is to understand how rxjs operators work.
It's is very common scenario to don't recognize which is the best operator to implement based on your needs.

The first step is to know the types. So before selecting an operator it was helpful for me identify to which type belongs to. You can take a look to the types here

There are many great resources to learn rxjs. Anyway, the best (probably the only) way to fully understand is practice, practice and more practice.

Instead of creating a post with examples and only theory content, I have created a simple app that allows you to navigate types and operators with code snippets.

This is what I've used to build the application:

app link: https://awesome-sammet-a68543.netlify.app/

Disclaimer: I did not include all rxjs operators, just some of them. Some examples are in progress I will continue adding more details

Top comments (0)