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.
Exit animation with `framer-motion` demystified
Animation has their own implementation to deal with exit animation, because React do no allow to delay the unmounting of components. The `framer-motion` API seems to me to be the most natural one. Let's see the amazing implementation of exit animation with this library.
Let's do some animations in native Javascript
If you wonder how to do some animations in javascript, it was the same for me. In this article, I present you what I discovered.