Ade Tola blank.hashnode.net·Jan 25, 2023Getting Started with Redux Toolkit: A Beginner's GuideWhat is Redux Toolkit? It is an effective and user-friendly tool for managing application state in React and other JavaScript frameworks. It is based on the well-known Redux package, which gives your application a predictable and centralized way to m...Adetayo Omotomiwa and 3 others are discussing this4 people are discussing thisDiscuss·103 likes·1.2K readsReact
Brett Thurstonbrettthurston.hashnode.net·Jun 14, 2022Prevent Acid Redux with Redux ToolkitWant to learn how to manage a single source of truth for your application? This post is going to help you get rid of the acid Redux associated with trying to use vanilla Redux. Acid Redux, for those who have never suffered it, is when you attempt t...MILONI and 1 other are discussing this2 people are discussing thisDiscuss·53 likes·544 readsredux-toolkit
Daniel Agantemcoderofphcity.hashnode.net·Sep 13, 2022Building Front-End Authentication Using Redux Toolkit and AxiosIntroduction Redux toolkit is a powerful react state management library useful for creating large applications and project, it consists of all the futures of redux along side added functionalities which makes it great for large scale applications. In...Discuss·21 likes·150 readsJavaScript
VictoriaforVictoria's Blogvictoriacheng15.hashnode.net·Apr 25, 2023Nextjs State Management with Redux Toolkit - Part 2Intro In my previous post, I covered setting up Redux Toolkit and fetching stories from the top category. However, the application now needs to display stories from the show and job categories as well. As a result, the code needs to be refactored to ...DiscussNext.js
DSKforDSK Codedskview.hashnode.net·Apr 23, 2023UseSelector: A Guide to React-Redux HooksImprove productivity and simplify state management with useSelector Using useSelector and useDispatch allows for an alternative to the connect() higher-order component. useSelector can replace map state to props by taking in a function argument that ...DiscussReact
VictoriaforVictoria's Blogvictoriacheng15.hashnode.net·Apr 17, 2023Nextjs State Management with Redux Toolkit - Part 1Intro I developed an application named Hacker News utilizing Next.js (non-app directory) with TypeScript and Redux Toolkit. During the development process, I took the opportunity to explore Next.js and Redux Toolkit. In this blog post, I will provide...DiscussNext.js
ShreyasforBlogorithmblogorithm.hashnode.net·Apr 12, 2023Just another blog attempting to simplify Redux toolkit for youAs a beginner, I tried to understand redux on my own through docs and blogs. I tried. Eventually, I learned it from Akshay Saini's boot camp called Namaste React and I have been very grateful for it. I have taken some amazing explanations from there ...DiscussReact
Jaskaran SinghforJaskaran Singhjaskaransingh.hashnode.net·Apr 4, 2023Implement authentication using the useRoutes hook, AuthContext, and Redux Toolkit with an example. Here's a step-by-step guideCreate an AuthContext component: The AuthContext component will be responsible for storing the user's authentication state and exposing methods for logging in and out. You can create it like this: import { createContext, useState } from "react"; exp...Discuss·34 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
Prashant HandelforPrashantBlogsprashanthandel.hashnode.net·Mar 31, 2023Redux PrinciplesFirst Principle "The state of your whole application is stored in an object tree within a single store." It means that the state of our application is maintained in a single object which the Redux storage would manage. For example- If we have a state...DiscussRedux
Tihorfortihor.hashnode.net·Mar 27, 2023Let's dive into Redux...If you are someone into Development, You might have already come across this term...Redux! When we click on a button, it dispatches an action, which in turn calls the reducer function, which updates the slice of our store. To read the data from the s...Discussredux-toolkit
Kelvin MosesforKelvin Mosesiamkelv.hashnode.net·Mar 24, 2023Mastering Asynchronous Workflows with Redux Toolkit and Thunk ActionsIntroduction 🎯 Learn how to simplify the process of writing and managing complex asynchronous logic in your Redux store with Redux Toolkit. This popular library from the Redux team provides a simplified API for handling asynchronous workflows, inclu...Discuss·13 likes·106 readsTutorialsRedux
Jim HaastrupforSteadyjimhaastrup.hashnode.net·Mar 20, 2023React State Management The Easy Way, With ReduxReact is a popular front-end JavaScript library that is widely used for building interactive user interfaces. Over time, react has grown to become the most popular library for building scalable web (and mobile) applications. As far as applications bu...Discuss·16 likes·68 readsReact