Ashwin Telmoreashwintelmore.hashnode.dev·Aug 27, 2023Analogy: React Redux in Web Application ArchitectureI can explain React Redux using an analogy that compares it to the process of handling data in a typical web application architecture involving a server and a database. Keep in mind that this analogy simplifies the concepts for better understanding. ...Discuss·10 likesReact
Roryblog.heyrory.com·May 10, 2023The cool thing about Redux...Okay so maybe there is nothing "cool" about redux, but I think it is cool how you can use vanilla redux, createReducer and createSlice all in the same project if I want or if I have to. Why use redux? Well for me one thing I enjoy is the "separation...Discuss·79 readsReact
Ravindu Sathsarasathsara.hashnode.dev·May 1, 2023Just created a simple React-Redux app using TypeScript! 🚀Step 1: Set up a new React project You can create a new React project using create-react-app. Open your terminal and run the following command: npx create-react-app my-app --template typescript This will create a new React project in a folder called...Discuss·16 likes·102 readsReactThe simplest project to get the knack of Redux 10
Dan Bahramidanbahrami.hashnode.dev·Apr 23, 2023How to create a private Redux storeUsually, when you see Redux in a React application it’s used as a single global store for application state. It tends to become a single dependency that creeps into every part of the app… but it doesn’t have to be that way. In this post, I’ll show yo...Discuss·82 readsRedux
Biraj Karkibirajkarki.hashnode.dev·Apr 7, 2023React Redux Tutorial For BeginnersReact Redux is a powerful library for managing state in large-scale web applications. It combines the simplicity of Redux with the power of React, making it an ideal choice for building complex and interactive user interfaces. In this tutorial, we wi...Discuss·13 likes·49 readsReact
Rahul Ranjanrahulranjans.hashnode.dev·Feb 2, 2023React-ReduxWhy REDUX? -Normally in React how to pass data? The data in React always flow from parent to child component which makes it unidirectional. ( It is not possible, we can send data from child to parent ). { How to overcome the issue to pass data in re...Discuss·3 likes·70 readsreact redux
React Themesreact-themes.hashnode.dev·Jan 11, 2023Beginner’s Guide to React Redux – Here’s How to Get StartedIf you’re getting started with trying to understand Redux, it can get a bit daunting, especially for beginners. There are a number of blogs out there on the topic, but they all fall short as they fail to cover the topic comprehensively. In this one, ...Discuss·33 readsReact
Pulkit Gangwarpulkit.hashnode.dev·Dec 15, 2022How to use Redux toolkit with React JSRedux is a state management library which offers a lot of features. The downside is it adds up a lot of boilerplate code and complexity to applications. The Redux toolkit solves these problems for us. Redux toolkit reduces the complexities and the co...Discuss·243 readsReact
Siddhantsiddhantsiddh15.hashnode.dev·Dec 4, 2022Getting Started with React-Redux by making a Cart applicationReact Redux Redux can be used with Angular as well. So we should not be confused if we see React Redux used very often. Redux is a container where we can store our states. It is like an array where data of our application is stored. Redux is called ...Discuss·115 readsReact
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...Discuss·11 likes·80 readsReact