TypeScript: React useRef Hook
A guide on using React's useRef Hook with TypeScript, covering HTML element refs and mutable instance variables.
A guide on using React's useRef Hook with TypeScript, covering HTML element refs and mutable instance variables.
Explains how to use EventTarget and custom events in JavaScript for non-DOM, event-driven programming, including TypeScript integration.
An interview transcript explaining Deno, a modern JavaScript/TypeScript runtime created by Node.js founder Ryan Dahl to address Node's shortcomings.
A curated list of free and paid resources for learning TypeScript, including books, courses, tools, and blogs for beginners and advanced developers.
Explains the importance of validating HTTP response bodies in frontend development and introduces Zod, a TypeScript schema library, as the solution.
A comprehensive FAQ guide addressing common questions and best practices for using React Query in modern web development.
A developer's personal update after 6 years, covering career moves from Google to Spotify, work on Chrome DevTools, and reflections on web development trends.
A tutorial on setting up React Navigation v6 with TypeScript in a React Native app, covering stack and tab navigators.
Explains the challenges of iterating over object keys in TypeScript and provides solutions for type-safe property access.
Explains the React 'as' prop, a technique for dynamically changing rendered HTML elements in components for semantic and styling flexibility.
A talk sharing lessons learned from maintaining TypeScript libraries, covering type publishing, API versioning, and debugging.
A guide on accessing and sharing loader data between nested routes in a Remix application using the useMatches hook and a custom typed utility.
Explains how to import and strongly type JSON data in TypeScript using the resolveJsonModule compiler option and the typeof operator.
A guide to improving the reliability of Express.js applications through logging, error handling, automatic restarts, input validation, and TypeScript.
A beginner-friendly guide explaining TypeScript Generics, covering their syntax, purpose, and a practical use case for writing reusable, type-safe code.
A developer shares their personal approach to structuring and writing React components, including import order and styling conventions.
A developer's three-year journey to contribute a fix allowing code before super() in TypeScript constructors, including the technical challenge and community story.
A technical deep dive into a TypeScript pull request that allows non-this, non-super code in derived class constructors before the super() call.
A beginner-friendly guide to setting up and writing your first end-to-end test using the Playwright testing framework.
Explores the difference between optional parameters and undefined types in TypeScript, with practical examples from React Query.