Understanding Prop Drilling in React: A Case Study of an E-commerce Shopping Cart

In the realm of React development, prop drilling often poses a challenge, particularly in applications with deep component hierarchies, such as e-commerce shopping carts. Developers face the task of choosing the right solution to address prop drilling while ensuring code maintenance, performance, and scalability. In this case study, we shall explore how prop drilling was … Continue reading Understanding Prop Drilling in React: A Case Study of an E-commerce Shopping Cart

Is It Time Yet to Embrace Recoil instead of Redux in React?

Before we walk down to theory, We have Repo out with a demo to show the difference between Recoil & Redux. Also, try running the application to see how new features from Recoil makes a difference. PerformanceRecoil subscriptions are on atom/selector updaters, while Redux is on all actions. So if you have N connected component and dispatch … Continue reading Is It Time Yet to Embrace Recoil instead of Redux in React?

Is Recoil Going to be the New Redux in React?

Recoil is a new state management library for React that lets you manage global/sharable state in a Reactish way. What's great is that Recoil is being developed by the Facebook team. In this blog we'll take a look at the useRecoilState hook and how they have made it is so 'React'-ish? Let’s take a very simple … Continue reading Is Recoil Going to be the New Redux in React?