Tag: react
All the articles with the tag "react".
Tech Watch Posts
Beyond React.memo: Smarter Ways to Optimize Performance
Published: at 08:46 AMWhy composition patterns might be better than memoization for React performance
The URL is a great place to store state in React
Published: at 08:25 AMDiscover why storing state in the URL is a powerful yet often overlooked approach in React. Learn how to persist state across page reloads, share application states, and enhance user experience with practical examples and best practices.
How to Use Zod for React API Validation
Published: at 02:20 PMLearn how to use Zod for API validation in React to ensure data consistency and prevent errors. This guide covers setting up Zod, defining schemas, integrating with API calls, and handling errors effectively. Improve your React app's reliability and developer experience with Zod.
Don't use React imports like this. Use Wrapper Pattern instead
Published: at 02:16 PMLearn how to optimize React.js imports using the Wrapper Pattern to reduce bundle size and improve performance. Discover practical examples with Framer Motion and Lodash, and explore tips for choosing the right library for your project. Read more to enhance your React development workflow!
Signals in React? Not a good idea
Published: at 08:28 AMExplore why implementing signals in React might be problematic despite their popularity in other frameworks. This article examines the practical and conceptual challenges of merging fine-grained reactivity with React's coarse-grained model, and why using frameworks like Solid.js might be better for signal-based approaches.
Announcing TanStack Form v1
Published: at 08:21 AMTanStack Form v1 is now stable and production-ready, featuring extreme type safety, schema validation, and async validation across React, Vue, Angular, Solid, and Lit frameworks. Learn how this type-safe form solution supports multiple runtimes including React Native and SSR with seamless client-server validation.
React.js Performance Guide
Published: at 01:28 PMNobody has time for buggy apps. Learn the best practices for improving React performance, including solutions to common problems & tools here.
It’s probably time to stop recommending Redux
Published: at 01:22 PMDiscover why Redux and other state management libraries may be unnecessary for most React applications. Learn how API caching, props, and useState can provide cleaner, more maintainable alternatives to global state in this thought-provoking analysis of modern React development patterns.
React 19's cache() Function
Published: at 01:19 PMDiscover how React 19's cache() function boosts Server Component performance by preventing duplicate data fetching. Learn implementation techniques, important rules, common pitfalls to avoid, and key benefits of this powerful memoization tool for efficient React applications.
The use Hook in React 19
Published: at 01:17 PMExplore React 19's new use Hook - a versatile API that lets you read from Promises and contexts within conditionals and loops, unlike traditional hooks. Learn how it integrates with Suspense, handles errors, and enhances both Server and Client Components in this comprehensive guide.