W
W
War1ock19942019-07-30 00:54:18
Frontend
War1ock1994, 2019-07-30 00:54:18

Is there a good current resource for 2019 on react/redux?

I'm trying to pick development with react / redux, but a lot of things are outdated.
Actually, maybe someone knows a good resource on this topic, apart from official sites and documentation, you need a good roadmap for this stack.

Answer the question

In order to leave comments, you need to log in

5 answer(s)
A
Anton Spirin, 2019-07-30
@War1ock1994

Redux Examples
Redux-course-v2
react-redux-links
How to choose between Redux's store and React's state?
Courses from Dan Abramov

N
nyazzz, 2019-07-30
@nyazzz

https://www.udemy.com/pro-react-redux/
Nice course on react. If you are only interested in the react + redux bundle, or only redux, then you should watch the course from the middle.

A
Andrew, 2019-08-08
@iCoderXXI

You just need to understand the essence, understand how HOCs (higher order components) and the props projection work. In short, a readax is a single store that does not allow you to change data directly, instead you need to dispatch actions that are thrown into reducers - pure functions whose task is to get the current state of the store and the action as input, make changes without affecting the current state (immutable) and return a new state. Reducers are called in a chain, and middleware are also called in a chain, which allow you to intercept actions and, for example, perform asynchronous actions, such as API requests. And finally, any component can subscribe to changes in the store using HOC connect from the react-redux package.
If the above is clear, it remains only to practice. I recommend that you start by describing the store and reducers with actions, and then just twitch the dispatch actions directly, without any react.
Well, to make life easier and increase the performance of the application, you also need to understand reselect (memoized selectors) and just to make it completely fun immutable - immutable data structures that return a new structure with a new link for any sneeze, due to which any changes are detected through a banal link comparison .
reselect and immutable are like spices, they allow you to significantly optimize the application, but at first you can live without them.
PS: If you find me on Skype, you can ask questions. :)

S
Sergey Vidyakin, 2019-08-01
@vidyakinsergey

And what certificates or tests can I take online so that I can post a link in my resume?

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question