DEV Community

Discussion on: Any developer out there can tell us how you use RxJS?

Collapse
 
nicolasini profile image
Nico S___

RxJS is a library that implements concepts of Reactive Programming. It is intended to be used alongside other libraries (React, Redux, Vue, etc) or frameworks (Angular, etc) to solve a specific problem (side effects, data fetching, etc)
One common scenario is to use it alongside Redux Epics to handle side effects of fetching or updating data.