Saket Khopkarsaketsk.hashnode.dev·Nov 11, 2024Day 9: ReactJS - Redux Middleware and Asynchronous ActionsIn our previous article, we explored what Redux “actually“ is. But now it is time to get into more deeper waters!! In Redux, middleware is a way to extend Redux's capabilities. It's a function that sits between the action being dispatched and the red...DiscussReactJSReact
Prathamesh Pichkatefullstackblogs.hashnode.dev·Nov 10, 2024Building a Todo App with React-Redux and Redux ToolkitIntroduction In this blog, we’ll explore how to build a simple Todo application with React-Redux and Redux Toolkit. Redux is a popular state management library, and Redux Toolkit provides a more efficient way to work with Redux in modern React applic...DiscussReact
Madhan Mohan Tmadhancodes.hashnode.dev·Oct 26, 2024Supercharge Your State Management with Redux ToolkitState management is a term every React developer hears sooner or later, and the journey often starts with Redux. But as many have discovered, while Redux is powerful, it also used to be known for its verbosity and complexity. Enter Redux Toolkit (RTK...DiscussRedux
Vishal Nayakvishalnayak.hashnode.dev·Oct 20, 2024TypeScript + React Redux: Pro Tips for Type-Safe and Scalable AppsIn the rapidly evolving landscape of web development, combining TypeScript with React and Redux has become a popular choice among developers. This powerful trio enhances code quality, maintainability, and developer experience. In this blog post, we’l...Discuss·103 readsReact
Supratim Deysanjudev.hashnode.dev·Oct 18, 2024🚀 Understanding React-Redux: A Beginner's Guide to State ManagementIn the world of React, managing state efficiently is key to building scalable and maintainable applications. That's where React-Redux comes in—a powerful tool that helps you handle complex state management with ease. 🧠 What is Redux? Redux is a pred...Discussreact js
Gauss Codergausscoder.hashnode.dev·Sep 12, 2024Set up Redux in a React TypeScript ProjectTo set up Redux in a React TypeScript project, follow these steps: Step 1: Install Dependencies First, install Redux, React-Redux, and Redux Toolkit (recommended for modern Redux setups), along with TypeScript types for Redux: npm install @reduxjs/to...DiscussReact Web ApplicationReact
Satyanarayan Daleisatyadev99.hashnode.dev·Sep 7, 2024Getting Started with Redux + TypeScriptHello everyone! In this article, we’ll explore how to set up Redux with TypeScript in a Next.Js app. Additionally, we'll dive into implementing redux-thunk for handling asynchronous actions in another blog to keep it short. We’ll reference the offici...DiscussTypeScript with Redux
Praveen Rajpraveenrajprp.hashnode.dev·Aug 26, 2024The Story of State Management: Part 1State refers to the data that can change over time and needs to be tracked to update the UI. This data can include things like user inputs, API responses, or any other dynamic content that influences what the user sees on the screen. State management...DiscussState Management
Shiwanshu Shubhamshiwanshudev.hashnode.dev·Aug 16, 2024Guide to Using Redux Toolkit Query MutationToday, we are going to learn how to add data using Redux Toolkit. In Redux Toolkit Query terms, changing data is called a mutation, and reading data is called a query. We will understand how to implement this and the logic behind it. We will also exp...Discuss·1 like·30 readsRedux
Rohan Shrivastavarohanblogs.hashnode.dev·Jul 13, 2024Introduction to React ReduxRedux is a popular library for managing application state. When combined with React, it simplifies state management by providing a central store that all components can access. Let's explore why and how to use Redux with React. Why Use Redux? Predic...DiscussReact