Abhishek Sadhwaniabhisheksadhwani.hashnode.dev·Sep 8, 2024Simplifying React State Management: A Deep Dive into Context API vs ReduxIn React, state management is crucial for building dynamic and scalable applications. As the size of an application grows, so does the complexity of handling state and sharing it between components. Two of the most popular solutions for managing stat...13 likes·31 readsReact
Pratyushatechnodiary.hashnode.dev·Dec 23, 2023Exploring MapReduce: A Crucial Element in Distributed ComputingMapReduce stands out as a Java-based program model and processing technique designed for distributed computing. It is a fundamental component of the Hadoop framework, along with Hadoop File System (HDFS) and YARN. Its potency lies in processing exten...Cloud Focused Big Data Seriesmapreduce
Santosh Kharelsantoshkharel.hashnode.dev·Apr 8, 2023Context API & ReducerIf are new to react or have a basic understanding of the state in react, or even if you are revising contextApi / reducer then it could help be helpful. Let's get started... Context and Reducer are two important concepts in React that are used to ma...2 likesReact
Amit Vishwakarmajust9krish.hashnode.dev·Jan 16, 2023Effortlessly Master React State Management with the useReducer HookAs a React developer, the managing state can be a daunting task - but not any longer! With the useReducer Hook, effortlessly master React state management in no time. Going beyond traditional setState methods, the useReducer Hook offers a dynamic and...46 readsuseReducer
FATIMAH BADMUScodedivah.hashnode.dev·Jan 8, 2023How to Build a Counter App with a Buttery Smooth UI.This is my first Article and I would explain how I built a shopping cart app on my PC as a student of Software Engineering at AltSchool Africa using React. Features included are: Custom counter hook with increment, decrement, reset, and set Value fu...2 likes·93 reads#counterapp
Syed Rafsan Raiyansrafsan.hashnode.dev·Nov 28, 2022Understanding ReducersWhat is Reducer? Reducers, as the name suggests, take in two things: previous state and an action. Then they reduce it to one entity: the new updated instance of state. Reducer function has 2 properties. They are: Reducer must be a pure function. Re...11 likes·45 readsReact
Rohan Bagchirohanbagchi.hashnode.dev·Aug 18, 2022Building a simple data fetching hook in React with typescriptThere was an ask at one point to come up with a generic data fetching hook. The idea was to standardise how we would handle the various loading, success & error states and also, ensure only the latest data becomes available to the UI by ignoring stal...82 readsReact
Ashif Khanashifkhan.hashnode.dev·Jun 4, 2022What the heck is useReducer()?Prerequisutes: - Basic understanding of JavaScript - Basic understanding of array functions - Basic understading of React - Basic understading of hooks in react Introduction In simple words, useReducer is a hook used for state management in react. D...7 likes·200 readsReact