Tag: redux

React Redux Connect

React Redux connect(): When and how to use it

Dev

The React Redux package provides React bindings for the Redux state container, making it very easy to connect a React application to a Redux store.

Glad Chinda
Jun 16, 2022 ⋅ 13 min read

Redux Toolkit’s new listener middleware vs. Redux-Saga

Dev

Redux Toolkit’s new listener middleware is a great alternative to Redux Saga, with a few caveats – learn all about it in this complete guide.

Joseph Mawa
May 26, 2022 ⋅ 9 min read
Smarter Redux With Redux Toolkit

Smarter Redux with Redux Toolkit

Dev

Redux Toolkit eliminates many of the lingering critiques against using Redux for state management.

Zain Sajjad
Apr 8, 2022 ⋅ 10 min read

Understanding Redux Saga: From action creators to sagas

Dev

Learn how to use Redux Saga for both simple and complex approaches to implementing async operations with action creators, thunks, and sagas.

Esteban Herrera
Mar 18, 2022 ⋅ 6 min read
Async actions in bare Redux with Thunk or custom middleware

Async actions in bare Redux with Thunk or custom middleware

Dev

Learn how to manage asynchronous actions in React apps with Redux Toolkit, or a bare Redux implementation with custom middleware.

Andrea Chiarelli
Feb 4, 2022 ⋅ 7 min read
React 18, Redux 8, And TypeScript: What You Need To Know

React 18, React Redux 8, and TypeScript: What you need to know

Dev

Learn what you can expect from the React Redux 8 beta, how it works with React 18, and its TypeScript codebase conversion.

Samson Omojola
Feb 2, 2022 ⋅ 5 min read
Redux Immutable Update Patterns

Redux immutable update patterns

Dev

Explore Redux, covering why immutable updates are important and how to handle tricky updates in nested objects.

Kasra Khosravi
Dec 16, 2021 ⋅ 9 min read

How to build a type-safe React Redux app

Dev

Learn how to use Redux in a type-safe React app to catch bugs at runtime instead of compile time and avoid shipping a bad UX to your users.

Ganesh Mani
Dec 8, 2021 ⋅ 7 min read

Why you don’t need to mix routing state with Redux

Dev

In this post, we cover how Redux-first routing works and explain how Redux can make your code more complicated than it needs to be.

Ganesh Mani
Dec 7, 2021 ⋅ 6 min read
Getting Started With React-Redux-Firebase

Getting started with react-redux-firebase

Dev

React-redux-firebase provides Redux bindings for Firebase, making it much simpler to use Firebase with Redux and React.

Yusuff Faruq
Nov 10, 2021 ⋅ 8 min read
React ReReselect

React re-reselect: Better memoization and cache management

Dev

Improve your React application’s components and reduce unnecessary re-rendering with re-reselect, a lightweight wrapper for Reselect.

Kasra Khosravi
Oct 18, 2021 ⋅ 5 min read
Using Redux Toolkit's createAsyncThunk

Using Redux Toolkit’s createAsyncThunk

Dev

Learn how to use the createAsyncThunk API to perform asynchronous tasks in Redux apps and handle common errors.

Chinwike Maduabuchi
Sep 2, 2021 ⋅ 4 min read