#performance
Read more stories on Hashnode
Articles with this tag
Introduction I had some questions around Cache Control and using them in Remix. This is kind of just me answering my own questions lol. Before going...
Options In Remix you can use the <Link> component to prefetch resources. It would prefetch both the loader data from the route and the JavaScript the...
I used to wonder why streaming with Suspense in React is useful. Traditionally, you have to wait for the server to finish all its work before the...
Debug and optimize React re-renders. ยท Introduction I've been trying to reduce the number of re-renders in one of our features at work. It's a bit heavy...
React Context and Re-renders In this post, we'll dive into how re-renders happen in the situation of React Context. I want us to understand how it...
Introduction In React, you can use inline functions to get element references (refs), but this approach has some nuances and is generally not...