InterviewSolution
| 1. |
What Is Flux Concept In Reactjs? |
|
Answer» Flux is the architecture of an application that Facebook uses for DEVELOPING client-side WEB applications. Facebook uses internally when working with React. It is not a framework or a library. This is simply a new TECHNIQUE that COMPLEMENTS React and the concept of Unidirectional Data Flow. Facebook dispatcher library is a sort of global pub/sub handler technique which broadcasts payloads to registered callbacks. Flux is the architecture of an application that Facebook uses for developing client-side web applications. Facebook uses internally when working with React. It is not a framework or a library. This is simply a new technique that complements React and the concept of Unidirectional Data Flow. Facebook dispatcher library is a sort of global pub/sub handler technique which broadcasts payloads to registered callbacks. |
|