#479 – November 03, 2024
Attributes, methods, and properties
HTML Form Validation is heavily underused
7 minutes by everdimension
HTML Forms have powerful validation mechanisms, but they are heavily underused. In fact, not many people even know much about them. Is this because of some flaw in their design? Let’s explore.
Level Up Your Frontend Skills
sponsored by Datadog
Unlock essential tools and best practices for frontend developers. Our Developer Kit provides you with instant access to resources that help you better understand user activity and troubleshoot front-end issues more efficiently.
Conditional React hooks pattern
5 minutes by Robin Malfait
The article discusses a pattern for conditionally enabling React hooks without violating the rules of hooks. The author presents a solution where hooks accept an 'enabled' boolean as their first parameter, allowing developers to control when hooks are active without conditional execution.
The Art of Dithering and Retro Shading for the Web
24 minutes by Maxime Heckel
A detailed walkthrough of the inner workings of dithering and other shading techniques to give a retro look and feel to your WebGL and React Three Fiber work.
Front-end libraries and the basic principles of how they work
3 minutes by faustinoaq
This code demonstrates a minimal implementation of React-like (and Angular and Vue) functionality from scratch, including a virtual DOM, component creation, state management with hooks (useState), and a diffing algorithm for efficient DOM updates.
When to use redirect() vs. router.push() in Next.js
3 minutes by Dario Djuric
Explaining the two methods for programmatically redirecting a user in Next.js components, server functions, or route handlers.