6 votes

Topic deleted by author

3 comments

  1. aphoenix
    Link
    One of the first things I like to point out is you might not need redux. While it's true that Redux might help you with your problem, what you're doing sounds simple, and you would be sacrificing...

    One of the first things I like to point out is you might not need redux. While it's true that Redux might help you with your problem, what you're doing sounds simple, and you would be sacrificing simplicity for complexity. I usually recommend keeping it simple.

    I think the thing that made Redux click for me was Dave Ceddia's post - What does redux do?. It's a pretty good overview of the problem that Redux solves and why you would use it.

    6 votes
  2. sebs
    Link
    For the "how does it work" part of your question, I found this free course on egghead very helpful. It's done by the creator of Redux and in only 2 hs explains with very detail but also with a...

    For the "how does it work" part of your question, I found this free course on egghead very helpful. It's done by the creator of Redux and in only 2 hs explains with very detail but also with a very good pace what it does and how (and why).

  3. meghan
    Link
    Redux is an abstraction made primarily used with React to store the state of your app between multiple views. DEV.to has a great explainer here: https://dev.to/hemanth/explain-redux-like-im-five

    Redux is an abstraction made primarily used with React to store the state of your app between multiple views. DEV.to has a great explainer here: https://dev.to/hemanth/explain-redux-like-im-five