Smit Khanparause-sync-external-store.hashnode.dev·Sep 23, 2024Replacing Context API and State Management Libraries with useSyncExternalStoreIn React apps, managing state across several components is essential to a seamless user experience. While the Context API is a common tool for managing global states, it often leads to unnecessary re-renders. When a context value changes, all compone...DiscussReact
Yusuf Uysalyusufuysal.hashnode.dev·Sep 15, 2024Unlocking the Power of React: Top Benefits for Modern Web DevelopmentReact has been the most popular UI library for nearly a decade, significantly simplifying the lives of frontend developers. To become better React developers, and better software engineers in general, we should always ask "why," not just focus on "ho...Discuss·30 readsReact
Pengblog.peng37.com·Aug 30, 2024I built the simplest react state management library (usecat)There are so many state management libs for react, but they are too complex / not easy to use for me. I only need these: Create state for something; Update the state out of component; Get the state out of component; A hook to read state within co...DiscussBuilding notenote.ccReact
Syed Aquib Alihadetan.hashnode.dev·Jun 12, 2024React States, Passing Data and Lists, Event HandlingReact States In React, state is a built-in object that allows components to create and manage their own data. State is used to keep track of information that can change over time and influence what is rendered on the screen. Using State The useState ...DiscussReact
AARYAN BAJAJaaryan-bajaj-learnings.hashnode.dev·May 15, 2024React useContext Hook in Real Life 💯Introduction In the bustling world of React development, state management is paramount. Ensuring seamless communication across components can be daunting, but with useContext, it's akin to operating a paperless office: clean, efficient, and highly or...Discuss·2 likesReact hooks tutorial
Ugne Adomaityteugneadomaityte.hashnode.dev·Apr 22, 2024State Management in React with useReducerWhen dealing with complex state logic in components, it can get quite messy when using useState hook, so it’s not the best solution to use it in cases like these. useReducer is a much better tool to deal with states in complex components, it is a str...DiscussuseReducer
Ayush Kumarkrayush1109.hashnode.dev·Mar 28, 202416 useContext() - State Management - NextjsTopic 16: Context API Topic 17: Redux StateManagement Topic 18: Redux Toolkit and Immer 1. Introduction to State Management: Understanding State in React: State refers to data that can change over time within a component. Components can have lo...DiscussReact JSReact state management
Sanjit Gawadesanjit.hashnode.dev·Mar 26, 2024Understanding React State: The Core of Dynamic UIsReact components are the building blocks of user interfaces (UIs) in React applications. But what makes these components truly dynamic and interactive? It all comes down to a fundamental concept: State. This blog dives deep into understanding the Rea...Discuss·1 like·83 readsReact
Kevin Millerkevinmiller.hashnode.dev·Mar 11, 2024React Context API: Solving State Management ChallengesReact Context API: Solving State Management Challenges State management is a critical aspect of building robust and scalable React applications. As applications grow in complexity, managing and sharing state across multiple components can become a da...Discusshire reactjs developer
Yadvir Kauryadvirkaur.hashnode.dev·Feb 23, 2024Zustand: A Fresh Take on State Management for ReactAs React applications grow in complexity, managing state becomes increasingly important. Zustand is a small, fast, scalable state management library for React which provides a simple and efficient way to manage the state, reducing boilerplate code an...Discusszustand