Prefer Function Updaters in State Setters
Explains why using function updaters in React state setters is better than relying on external dependencies, improving performance and reducing bugs.
Explains why using function updaters in React state setters is better than relying on external dependencies, improving performance and reducing bugs.
Explores React Query's capabilities as a global state manager for asynchronous data, not just a data fetching library.
A guide to improving debugging in the Composable Architecture (TCA) by handling large state diffs and filtering noisy actions.
Explains how Livewire, a Laravel framework, creates a 'live' UI illusion using AJAX requests and state serialization, not persistent connections.
Explains how destructuring breaks TypeScript's discriminated union type narrowing and offers workarounds.
Introducing SoloX, an immutable state management library for React inspired by MobX, offering simplicity and local state control.
Argues for using declarative state updater functions in React instead of inline 'naked state setters' for better code clarity and maintainability.
A guide on programmatically dismissing modal and detail views in SwiftUI using the presentationMode environment value.
Explains a React UX quirk with controlled select elements and offers a solution using useEffect to ensure a valid default value.
A guide on implementing and using React Context with modern functional components and hooks, including code examples.
A guide on best practices for using React Context, including avoiding default values and structuring multiple contexts.
A developer shares lessons from scaling a large Vue.js application over 3 years, covering modular architecture, micro-frontends, and state management.
Explores using RxJS reactive programming in Angular 'dumb' components to handle complex asynchronous @Input changes, replacing imperative ngOnChanges logic.
A React tutorial on creating an indeterminate (tri-state) checkbox using state management, refs, and the useEffect hook.
A comprehensive 2021 guide covering React functional components, hooks, state management, project generators, and best practices.
A guide to using Jotai, a minimalist state management library for React, covering atoms and derived state.
A guide to understanding and using status checks and boolean flags in React Query for effective data fetching state management.
A guide to React state management libraries, explaining core concepts and helping developers choose the right tool for their project.
A guide to using React Context effectively, covering its purpose, creation, and best practices to avoid common pitfalls.
A tutorial explaining the React useRef() hook, covering mutable values and DOM element access in three practical steps.