Menu
Home Explore People Places Arts History Plants & Animals Science Life & Culture Technology
On this page
Redux (JavaScript library)
JavaScript state container software library

Redux is an open-source JavaScript library for managing and centralizing application state. It is most commonly used with libraries such as React or Angular for building user interfaces. Similar to (and inspired by) Facebook's Flux architecture, it was created by Dan Abramov and Andrew Clark. Since mid-2016, the primary maintainers are Mark Erikson and Tim Dorr.

We don't have any images related to Redux (JavaScript library) yet.
We don't have any YouTube videos related to Redux (JavaScript library) yet.
We don't have any PDF documents related to Redux (JavaScript library) yet.
We don't have any Books related to Redux (JavaScript library) yet.
We don't have any archived web articles related to Redux (JavaScript library) yet.

Description

Redux is a small library with a simple, limited API designed to be a predictable container for application state. It operates in a fashion similar to a reducing function, a functional programming concept.

History

Redux was created by Dan Abramov and Andrew Clark in 2015.1 Abramov began writing the first Redux implementation while preparing for a conference talk2 at React Europe3 on hot reloading. Abramov remarks, "I was trying to make a proof of concept of Flux where I could change the logic. And it would let me time travel. And it would let me reapply the future actions on the code change."4

Abramov was struck by the similarity of the Flux pattern with a reducing function. "I was thinking about Flux as a reduce operation over time... your stores, they accumulate state in response to these actions. I was thinking of taking this further. What if your Flux store was not a store but a reducer function?"5

Abramov reached out to Andrew Clark (author of the Flux implementation Flummox) as a collaborator. Among other things, he credits Clark with making the Redux ecosystem of tools possible, helping to come up with a coherent API, implementing extension points such as middleware and store enhancers.6

By mid 2016, Abramov had joined the React team and passed the primary maintainership on to Mark Erikson and Tim Dorr.7

In February 2019, useReducer was introduced as a React hook in the 16.8 release. It provides an API that is consistent with Redux, enabling developers to create Redux-like stores that are local to component states.8

See also

  • Free and open-source software portal

References

  1. Abramov, Dan. "The History of React and Flux with Dan Abramov". Three Devs and a Maybe. Retrieved 7 April 2018. http://threedevsandamaybe.com/the-history-of-react-and-flux-with-dan-abramov/

  2. "Dan Abramov - Live React: Hot Reloading with Time Travel at react-europe 2015". Youtube. https://www.youtube.com/watch?v=xsSnOQynTHs

  3. "ReactEurope 2015 - Live React: Hot Reloading with Time Travel". ReactEurope. https://2015.react-europe.org/#reloading-anchor

  4. Abramov, Dan. "Progression, Curiosity, and Burnout with Dan Abramov". TylerMcGinnis.com. Retrieved 7 April 2018. https://tylermcginnis.com/podcast/dan-abramov/

  5. Abramov, Dan. "The History of React and Flux with Dan Abramov". Three Devs and a Maybe. Retrieved 7 April 2018. http://threedevsandamaybe.com/the-history-of-react-and-flux-with-dan-abramov/

  6. Abramov, Dan. "The History of React and Flux with Dan Abramov". Three Devs and a Maybe. Retrieved 7 April 2018. http://threedevsandamaybe.com/the-history-of-react-and-flux-with-dan-abramov/

  7. Idiomatic Redux: The History and Implementation of React-Redux https://blog.isquaredsoftware.com/2018/11/react-redux-history-implementation/#v5-x

  8. React v16.8: The One with Hooks https://reactjs.org/blog/2019/02/06/react-v16.8.0.html#react-1