React State Management using Redux (Build a shopping Cart๐ฅ )
Video Statistics and Information
Channel: The Full Stack Junkie
Views: 29,931
Rating: 4.9635534 out of 5
Keywords: redux explained, global state in react, redux and react project, what is redux, how to use redux, react redux state, advanced react concepts, reactjs, state management with redux, redux.js, react state management, statemanagement in react using redux, react redux tutorial, redux tutorial, web development, react development, learn react and redux, learn react.js, teaching react.js, web app state management using redux
Id: MNs_7avLIJ4
Channel Id: undefined
Length: 69min 58sec (4198 seconds)
Published: Tue Aug 25 2020
Please note that this website is currently a work in progress! Lots of interesting data and statistics to come.
https://github.com/concentjs/concent
Awesome
Biggest Challenge in React application is the management of state for frontend developers. In large applications, React alone is not sufficient to handle the complexity which is why some developers use React hooks and others use state management libraries such as Redux.
The components of React have a built-in state object. The state is encapsulated data where you store assets between component renderings that are permanent. For a JavaScript data structure, the state is only a fancy term. The UI may look completely different afterwards if a user changes status by interacting with your application, since it is defined by this new state rather than the old state.
If developers do not have scalability in mind, so when something goes wrong, it is very difficult to figure out what's going on. In your application, this is why you need state management. To resolve this particular problem, Redux was created. It provides a central store that holds your application in all states. The stored state can be accessed by every component without sending it from one component to another.
I came across a very useful article regarding the React State Management Using React Hooks and Redux: https://medium.com/@loginradius/react-state-management-using-react-hooks-and-redux-dab7541ba9f3
You too might find it useful :)