Debarshi Raj BasumataryforDebarshi's Blogdebarshiraj.hashnode.net·Mar 18, 2023May the State Be with You: A journey to simplify state management in React using Redux Toolkit.Introduction: 👋Hello there! 🧑💻fellow developers. In this beginner-friendly article, I will explain how the Redux library functions and demonstrate how one can implement the magnificent Redux Toolkit effortlessly to manage complex application stat...Discuss·20 likes·65 readsDevsInTechBlogs
Aman Singh TomarforAman Singh Tomaramansinghtomar.hashnode.net·Oct 19, 2022Redux Toolkit-A Modern Redux: The Complete Guide(Part-2)This article covers Thunk middleware in detail and Extra Reducers and we will continue with the same application. You can read out Redux Toolkit part1 https://www.youtube.com/playlist?list=PLCG3NOef02QjCO2do4E5mVWdfXgwuJrNw Requirement When the user...Discuss·2 likes·60 readsReact
Adekola Olawaleforadekolaolawale.hashnode.net·Oct 10, 2022Using Redux Toolkit to Handle Asynchronous Data RequestsBefore the arrival of the Redux Toolkit (initially named Redux Starter Kit) in October 2019, fetching data asynchronously from the backend via Redux is always too much of a hassle. Developers had to settle with the Redux Thunk middleware package to h...Discuss·1 like·59 readsReact
Ozan Tekinforozantekindev.hashnode.net·Apr 1, 2023Async Operations in Redux with the Redux Toolkit ThunkIn this writing, I have compiled my work on Thunk. Happy reading! Content: What is the redux-toolkit thunk? Introduction Let’s try to see the big picture by initially making brief explanations about “redux-toolkit” and “thunk”. Redux-toolkit: You can...DiscussRedux
Siddharth SinghforSelf Learning Advanced Topicsofficiallysidsingh.hashnode.net·Mar 20, 2023Scaling Your React App with RTK-QueryIn my previous blog, I talked about the SWR 2.0 library for fetching data from API and performing CRUD Operations on that data. I also talked about Data Revalidation, Optimistic UI Updates, Mutations etc. If you haven't already read that article, her...Discussredux-toolkit
Debarshi Raj BasumataryforDebarshi's Blogdebarshiraj.hashnode.net·Mar 18, 2023May the State Be with You: A journey to simplify state management in React using Redux Toolkit.Introduction: 👋Hello there! 🧑💻fellow developers. In this beginner-friendly article, I will explain how the Redux library functions and demonstrate how one can implement the magnificent Redux Toolkit effortlessly to manage complex application stat...Discuss·20 likes·65 readsDevsInTechBlogs
Gokul Pisharodyforgokulpisharody.hashnode.net·Mar 9, 2023What is the difference between redux ,redux thunk and redux saga with example and when to use whatRedux: Redux is a state management library for JavaScript applications. It provides a centralized store to manage application state and enables predictable state management by enforcing a strict unidirectional data flow. It also offers features like ...Discuss·1 likeRedux
Nadeem Khanfornadeemkhan.hashnode.net·Feb 14, 2023Advantages of Redux Saga over Redux ThunkIntroduction : When building complex applications using Redux, managing asynchronous operations can be challenging. Middleware libraries, such as Redux Thunk and Redux Saga, provide solutions to manage side effects such as making API calls, dispatchi...Discuss·1 like·48 readsRedux
Pulkit Gangwarforpulkit.hashnode.net·Dec 15, 2022How to use Redux toolkit with React JSRedux is a state management library which offers a lot of features. The downside is it adds up a lot of boilerplate code and complexity to applications. The Redux toolkit solves these problems for us. Redux toolkit reduces the complexities and the co...DiscussReact
Aman Singh TomarforAman Singh Tomaramansinghtomar.hashnode.net·Oct 19, 2022Redux Toolkit-A Modern Redux: The Complete Guide(Part-2)This article covers Thunk middleware in detail and Extra Reducers and we will continue with the same application. You can read out Redux Toolkit part1 https://www.youtube.com/playlist?list=PLCG3NOef02QjCO2do4E5mVWdfXgwuJrNw Requirement When the user...Discuss·2 likes·60 readsReact
Adekola Olawaleforadekolaolawale.hashnode.net·Oct 10, 2022Using Redux Toolkit to Handle Asynchronous Data RequestsBefore the arrival of the Redux Toolkit (initially named Redux Starter Kit) in October 2019, fetching data asynchronously from the backend via Redux is always too much of a hassle. Developers had to settle with the Redux Thunk middleware package to h...Discuss·1 like·59 readsReact
Md.Al-Amin SahedforSahed's Programming Thoughtsahedthought.hashnode.net·Jul 26, 2022Redux Saga With ExampleDisclaimer: I assume you know Redux in this blog. (If you don't know you can read this blog) Redux Saga is a middleware of Redux. Now, What is the middleware of Redux? The middleware of Redux is the extension between dispatching an action and the re...Discuss·1 like·103 readsReactRedux