Madhan Mohan Tmadhancodes.hashnode.dev·Oct 26, 2024Supercharge Your State Management with Redux ToolkitState management is a term every React developer hears sooner or later, and the journey often starts with Redux. But as many have discovered, while Redux is powerful, it also used to be known for its verbosity and complexity. Enter Redux Toolkit (RTK...DiscussRedux
Shiwanshu Shubhamshiwanshudev.hashnode.dev·Aug 7, 2024How to Use Async Thunk in React with Redux ToolkitThe first thing I want my readers to understand is that React Tool Kit's Query data fetching API has essentially replaced the Async Thunk. However, it's still important to learn this concept before moving forward. I will also discuss RTK and how to i...Discuss·11 likes·53 readsRedux
Gulshangzamann.hashnode.dev·Jul 30, 2024QuickTip: Writing Shared (common) reducer actions in redux-toolkitContext The modern way to write redux is through redux-toolkit as recommended by redux maintainers. In redux toolkit we write slice which contains the reducer and the actions for a particular feature. The actions are generated by redux toolkit here a...Discuss·26 readsQuick TipRedux
Syed Aquib Alihadetan.hashnode.dev·Jun 17, 2024Redux ThunkRedux Thunk is a middleware that allows you to write action creators that return a function instead of an action. This is particularly useful for handling asynchronous operations, such as API calls. With Redux Thunk, you can dispatch multiple actions...Discussthunk middleware
Komal Shevanejs-brains.hashnode.dev·Jan 24, 2024React + Redux +ThunkRedux is an open-source JavaScript library for managing the state of an application. It is commonly used with React, but it can be used with any JavaScript framework or library. Redux provides a predictable state container, which means that the state...Discuss·80 readsRedux
Sandeep Ashokscriptoplankton.hashnode.dev·Jan 6, 2024Redux vs Redux ToolkitWhy Redux or RTK? In the world of front-end developement, state management is crucial for creating scalable applications. Redux has been popular in this domain for along time and its popularity led to creation of redux toolkit. In this blog, we will ...Discuss·242 readsredux vs redux-toolkit
Justine Mahinyilajustinelim.hashnode.dev·Dec 5, 2023Demystifying Redux Toolkit Async ThunksRedux Toolkit's createAsyncThunk utility is a cornerstone in managing asynchronous operations in Redux applications. It provides a structured way to handle these operations by dispatching actions at different stages of the process. Let's explore how ...Discussredux-thunk
Justine Mahinyilajustinelim.hashnode.dev·Dec 5, 2023How Redux Thunk Works Under The HoodRedux Thunk is a middleware that allows you to write action creators that return a function instead of an action. This function can contain asynchronous or complex synchronous logic. The way Thunk connects to your overall app and how reducers access ...DiscussReact
Md. Sadiqmdsadiqmd.hashnode.dev·Nov 19, 2023How to Make API Calls with Redux ToolkitIntroduction Redux helps manage the state in React, and Redux Toolkit is a setup that makes it easier to use Redux with React. In this blog post, we'll explore how to fetch data using Redux Thunk, a part of React Redux, along with Axios, which is a R...Discuss·12 likes·109 readsredux-toolkit
Abderahmane Katebabderahmane-kateb.hashnode.dev·Oct 30, 2023Mastering Redux and Redux Toolkit: A week of Learning and GrowthHello and welcome to a new article from my journey in learning and mastering application programming. Today, it's not about React Native. Today, I finally completed learning Redux and Redux Toolkit. It was an enjoyable days of learning, and I faced s...DiscussRedux