react
8 articles tagged with "react"
Tech Feeds
MdBin Levels Up: From Custom Markdown Pipeline to Streamdown
The Evolution Continues A few weeks ago, I introduced MdBin—a free utility for sharing beautifully rendered markdown. The response was incredible, and people were using it exactly how I'd hoped: sha...
ReactJS Hook Pattern ~Latest Ref Pattern~
・The latest ref pattern solves the problem of accessing the latest values in useEffect without having to add them to the dependency array. First, you create a ref to store the function, then another u...
Mastering React's Dynamic Side: State, Events, and Conditional Rendering! (React Day 3)
This article provides a comprehensive tutorial on managing state, handling events, and implementing conditional rendering in React. It includes practical examples, common mistakes, and debugging tips, making it a valuable resource for developers looking to enhance interactivity in their React applications.
Building with React: Dive into JSX, Components, and Props! (React Day 2)
This article provides a comprehensive tutorial on React fundamentals, focusing on JSX, functional components, and props. It emphasizes best practices, common pitfalls, and real-world scenarios to enhance understanding and application of React in building scalable applications.
Advanced React Patterns Every Developer Should Know
This article explores advanced React patterns such as Compound Components, Custom Hooks, and Error Boundaries, emphasizing their roles in building scalable and maintainable applications. It provides practical examples and insights into optimizing performance and managing state effectively across components.
React Isn’t the Hard Part, Designing for Change Is
This article emphasizes the importance of designing React applications with a focus on maintainability and clarity rather than just syntax. It introduces concepts like treating components as contracts, managing state effectively, and structuring code for future adaptability.
Deep Dives
Redux Internals: How It Really Works
A deep dive into Redux's core implementation - understanding createStore, middleware pipeline, and the subscription model that powers predictable state management.
React Server Components: A Deep Dive
Understanding React Server Components, their benefits, limitations, and when to use them in your Next.js applications.