Browsing Tag
redux
11 posts
How to Build a Persistent Undo/Redo Stack in React Without Redux
Undo/redo functionality isn’t just for text editors — it’s critical for rich apps like form builders, design tools,…
Modern React State Management in 2025: A Practical Guide
State management is a big deal when building scalable and maintainable React apps. Picking the right tool can…
Mastering Redux-Saga: Advanced Concepts and Use Cases 🌪️
While implementing the feature for creating project versions at my organization, I leveraged Redux-Saga’s channel feature to schedule…
🚀 Learning Through Experience: A Tale of NgRx Effects
As developers, we’ve all faced those moments when our code doesn’t behave as expected, and we’re left scratching…
A Beginner’s Guide to Implementing Redux in Your Existing System
Redux is a powerful state management library that helps you manage the application state in a predictable way.…
Singleton Pattern, Backend State management and Pub Subs
Stateless vs Stateful Backends Stateless – We don’t store any state in the backend. We rely on DB…
Gerenciamento de Estado com Context API vs Redux
Introdução O gerenciamento de estado é um aspecto crucial no desenvolvimento de aplicações React. Existem diversas abordagens para…
Redux-Toolkit vs React Context API: A Deep Dive into State Management.💪🚀🚀
Introduction: Choosing the Right Tool for React State Management State management is a crucial aspect of any React…
How 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…
Moving From Electron to Tauri
Part 1: Interprocess Communication — porting a Typescript-based message system of an Electron App to Tauri and Rust.…