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.
React routing library with Navigation API
It's now time to connect the agnostic routing library that uses the navigation API to React.
Master the Art of Navigation: Building a Library with the Navigation API
Now that we know what is the navigation API. Let's build a routing library agnostic of every framework.
Back to the future: Navigation API
The new navigation API is coming. Ryan Florence said in a github issue that it will help to a better implementation for `react-router`. Let's explore this new API.
Web Storage API: localStorage and sessionStorage
Sometimes, you would like to store some data in the browser. Here is the Web Storage API that can make you happy. But what is it? And how to use it?
Let's explore javascript's Location and History API
The goal is to understand how works the Location and History API to implement a `react-router` library like.