© 2022 Hashnode
#redux-saga
Introduction I think many people think thunk or saga is needed to handle async processes. But let me show you how we can handle the processes without using them. The Example https://codesandbox.io/s/redux-async-without-thunk-or-saga-2v1w27
Disclaimer: 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 …
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 di…
If 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…
I started working full Frontend Engineer at a upcoming startup company for the last 3weeks now and I can tell you this is the best decision and the best thing that has happened to me in a while and will forever be, that’s because I don’t se…
What 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 Redu…
If you are learning React or working on a project which uses React then you must have heard about Redux. In this article, we will see What is Redux? What is state management? Why use State …
Many of us including me when started to learn redux often get confused while creating a store and how to structure the redux app where to place all actions, reducers and how to set up a store. In this…
Till the last blog, we were aware of the actions in Redux. But, in redux, actions alone can't do the job. You need the other elements to come and join the hand together to make the redux work. Let's s…
React Redux is one of the two ways to handle dynamic data and API calls in React. Unlike HTML, you cannot call APIs directly in react due to its ability to constantly re-render the page. Hence, to upd…