What is the difference between Reactjs and Rxjs?

后端 未结 4 995
青春惊慌失措
青春惊慌失措 2021-01-31 14:47

Basically I am start learning Rxjs and I am a little bit confused between React and Rxjs. I was supposing that Reactjs and Rxjs is same.

Questions:

4条回答
  •  情话喂你
    2021-01-31 15:30

    React is a javascript library for building user interfaces whereas RxJS is a javascript library for reactive programming using Observables.

    Both these javascript libraries are not comparable to each other since it serve different purposes.

    Both these can be used together to create better single page applications.

    React makes it painless to create interactive UIs.

    RxJS help to make it easier to compose asynchronous or callback-based code

提交回复
热议问题