JSX Over The Wire
Explores a novel approach where APIs return JSX components directly, inverting the traditional data flow in React applications.
Explores a novel approach where APIs return JSX components directly, inverting the traditional data flow in React applications.
A guide to the essential React libraries for building large-scale applications in 2025, covering state, routing, styling, and more.
Explores common React data fetching patterns like sequential and parallel fetching for components on client and server.
A tutorial on fetching data in React using only built-in Hooks like useState and useEffect, without third-party libraries.
A guide exploring various methods for fetching data in React, from older techniques to modern approaches like React Server Components.
A tutorial on using URL search parameters in Next.js to manage shareable state for features like searching and sorting posts.
A guide exploring data fetching in Next.js using Server Actions and comparing it to Server Components and Route Handlers for client-side scenarios.
A guide to using React 18's useOptimistic hook for instant UI updates in Next.js applications, improving perceived performance.
A summary of a live stream Q&A with Dan Abramov and Joe Savona discussing React Server Components, their benefits, and trade-offs.
A developer's guide to designing the API and data structure for a custom React tree table component, inspired by MacOS Finder.
A tutorial on refreshing server-side data in Next.js without a full page reload, focusing on the Pages Router.
A guide on fetching data in React using Class Components, covering lifecycle methods, error handling, and testing.
An overview of GraphQL, exploring its advantages like declarative data fetching and disadvantages compared to REST.