No More Sentry Alerts? Discover 2 Culprits I Encountered
Explore 2 issues causing your Sentry alerts to stop working in your React applications. Based on a real case, learn how I troubleshooted and resolved these problems to ensure your error monitoring stays effective.
Under the hood: Exploring Polyfication's Journey with core-js
Polyfication is at the heart of ensuring seamless compatibility of JavaScript code across environments. Under the hood, core-js dynamically determines which polyfills are needed to augment features not supported by browsers. This behind-the-scenes magic allows developers to write modern JavaScript code with confidence, knowing that it will perform consistently across platforms.
Tanstack Router: Harnessing TypeScript's Power for Revolutionary Routing
Explore how @tanstack/router transforms web development with its full type-safe approach. Learn about its innovative use of interfaces and 'declare module', ensuring a perfectly tailored routing experience based on your project's configuration.
Better developper experience with full typesafe helper functions
When you build a library, you want your code to be fully type safe and provide to developpers the best experience possible. Unfortunately, sometimes it can be tricky to provide this full type safety. Let's see a tip to do it with an example.
use-context-selector demystified
In the React context performance I talked about the `use-context-selector`, but how does it work under the hood?
react-router v6 demystified (part 3)
In this last article, we continue the exploration of the `react-router` code and our implementation.
react-router v6 demystified (part 2)
In this second article, we will focus on understanding how is implemented `react-router` v6, and make a simpler implementation.
react-router v6 demystified (part 1)
In this first article, we are going to see the main differences in the API of `react-router` v6 compared to the previous version.
React event listeners demystified
Let's go deep in the React implementation to know event listeners are handled.
How does Reselect work?
Let's look closely the code of the library Reselect, which handle memoization of Redux (and others) selectors.
How does Redux works?
Let's explore together in this article, the well known library Redux, to see its implementation