Do we need state management libraries anymore?
Let's find out by exploring how the most popular libraries are doing it under the hood and then build our own.
Let's find out by exploring how the most popular libraries are doing it under the hood and then build our own.
The React Compiler memoizes your components at build time, and it does the job better than you can by hand. What it is, how the compiled output works, how to turn it on, and what to do with the useMemo calls already in your codebase.
Where should your auth token live so an XSS bug can't steal it? Here's how to build auth that survives the crazy non-secure world we live in.
Over the years, in our goal to achieve faster and faster web applications, we created different hydration and rendering strategies. Each with benefits and drawbacks that we explore in this article.
React gives you a lot of ways to make two components share data but it gets more and more complicated based on the data and how far apart the components are. Lets see the different ways components can communicate with each other.
One room of React developers had all used TanStack Query. The next room had barely heard of it. This is the version of the talk that assumes nothing.