David Sunday Bayodedavidbay.hashnode.dev·4 hours agoReplacing React Hooks with React Redux State Management Library Part 3In the previous chapter, I discussed the current state of the application, the underlying architecture, how the internal components(specifically the form that handles currency input) functioned and what direction the application needed to go. This pa...DiscussReact
Nandani Paliwalblog.nandanipaliwal.co·a day agoHow to Manage State in a React AppIntroduction As a software developer with extensive experience in React, I understand the pivotal role state management plays in building robust and efficient applications. In this blog, we'll dive deep into state management in React, exploring best ...Discuss·1 likeState Management
Igweze Hycientdevmechanic.hashnode.dev·Sep 25, 2023Beta way to manage states in react and react native using zustand 😉I believe we can both agree that redux has too much boilerplate. To create something as simple as a counter, you would have to Create actions Create a reducer Set up the store Connect the store to your component Dispatch actions from your compon...Discuss·1 likeReact
Piyush Tyagipiyushtyagidev.hashnode.dev·Sep 25, 2023Mastering React's useReducer: From Basics to Advanced TechniquesReact is the bedrock of modern web development, enabling dynamic, efficient, and scalable user interfaces. At its core lies useReducer, a formidable tool that streamlines complex state management and transforms how we handle data. Imagine crafting a ...DiscussReact
Maimoona Javedmaimoona.hashnode.dev·Sep 18, 2023How to use Redux and Redux Toolkit: A practical guide for beginnersIn the fast-changing world of web development, we often need smart ways to handle how our websites remember things. Imagine building a big and complicated website – we might need help keeping track of lots of information. That's where Redux and Redux...Discuss·2 likes·87 readsReact
Ghalebblog.ghaleb.dev·May 31, 2023You Don't Need ReduxIt is relatively easy for an app to outgrow reliance on props for sharing state between components. Before the days of the Context API and hooks, centralized state management solutions (mainly Redux) were the go-to tools to efficiently read and updat...Discuss·26 readsReact
Anant Guptaanantguptablogs.hashnode.dev·Sep 16, 2023Difference Between Variable and Constant in JavaScriptVariables and constants are used to store data values in JavaScript. The main differences between them are: Variables can change: Variables can have their value reassigned. Once a variable is declared, you can assign it a new value. let x = 5; x =...DiscussJavaScript
Emmanuel Fordjour Kumahefkumah.hashnode.dev·Sep 15, 2023How to manage state in a React app using Redux.In this tutorial, you will manage the state of a React app using Redux. Redux helps you track and manage the state of an entire application in a single object instead of having the state and logic in a top-level component. You will build a to-do app ...DiscussRedux
Jedidiah Amaraegbuamjedidiah.hashnode.dev·Sep 13, 2023Understanding State Management in React: useState, Context API, useReducer, and ReduxReact, with its component-based architecture, provides several options for managing the state of your applications. Four commonly used methods are the useState hook, the Context API, the useReducer hook, and Redux. Each of these approaches has its ow...Discuss·1 likeState Management
Mohd Junaid Arifmohd-junaid.hashnode.dev·Sep 6, 2023Introduction to Redux: Understanding State Management with ReduxUnderstanding Redux: Streamlining State Management Hello, fellow developers! Today, we're diving into Redux, the state management library that can significantly simplify how you manage your application's state. Let's uncover the essence of Redux, why...DiscussRedux