Mikeydraken.hashnode.dev·Sep 25, 2023The Complete Guide to Redux Saga With Real life exampleIntroduction Redux Saga is like a battlefield commander coordinating complex missions behind the scenes. Just like a commander carefully manages troop logistics and strategies, Redux Saga orchestrates asynchronous flows and side effects outside of yo...Discussredux-saga
Gokul Pisharodygokulpisharody.hashnode.dev·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·3 likes·40 readsRedux
Nadeem Khannadeemkhan.hashnode.dev·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·124 readsRedux
O'Neal Ombuombudev.hashnode.dev·Feb 12, 2023Why I'm skipping React Redux to study Zustand for state management and Why You Should Too!State management is an important aspect of building modern web applications, as it helps manage the data flow between different components. In recent years, React Redux has been the go-to solution for state management in React applications. However, ...Discuss·29 readsReact
Haniinothanii.hashnode.dev·Sep 26, 2022Test Redux Connect Components with EnzymeFollowing Along In order to follow along with this lesson, we need to add a couple things to our project. In our src folder, we need to add TodoList.css TodoList.js TodoList.test.js store.js Within these files: Todolist.css * { box-sizing: bord...Discuss·44 readsReact Component Testing React
Anshul Rahejaanshulraheja.hashnode.dev·Sep 23, 2022Redux and Redux SagaWhat is Redux? We require a tool through which we can control the state of our apps (data). Redux is a state management tool, and that is what it does. Consider it as a storage space for all the data, which provides access to the entire app data (or,...Discuss·1 like·828 readsRedux
Md.Al-Amin Sahedsahedthought.hashnode.dev·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·140 readsReactRedux
rupesh padhyerupeshpadhye.hashnode.dev·May 10, 2022Improve React App Performance - Redux/Saga Code Splitting-[ Part 2 ]In Part I Post, I shown before and after performance report of SaaS frontend app. Main bundle size was reduced from 5mb to around 1.5mb :partying_face: by following below approaches. Let us deep dive how we achieved it. Code Splitting At Multiple ...Discuss·178 readsReact
Dinesh Imaduwa Gamagedaminda.hashnode.dev·Apr 22, 2022Redux And New React-redux HookIf you are a React developer, you must have heard of Redux for sure. While Redux is such an important tool for React developers, it also introduces extra code and a cumbersome setup. However, with the popularity of functional components and hooks, Re...Discuss·1 like·162 readsJS frameworks & LibrariesRedux
Itish Prasaditishprasad.hashnode.dev·Feb 10, 2022Redux is telling to use Redux ToolkitWhat is Redux ToolKit? 🛠️ Introduction The Redux Toolkit package was developed to be the new standard way to write Redux code, handling three major concerns about Redux itself... "Configuring a Redux store is too complicated" "I have to add a lot o...Discuss·18 likes·144 readsReact