Are Redux and RxJS the same?

I have been into Angular for work reasons and I use rxjs quite often. I am not sure if I want to dive into another framework like React in the FCC Curriculum.
But I am quite interested in rxjs but is it the same Redux? The index page for it says that it is included because of React

Redux is used for global state management while RxJS is used for synchronous tasks, like promises.

Completely different things. Redux is a library for state management for apps. RxJS is for a software pattern called observables, where an observable represents a value across a period of time.

1 Like

Are you thinking of ngrx, the state management library for Angular? If so, they are very similar.