Why we should verify HTTP response bodies, and why we should use zod for this
Explains the importance of validating HTTP response bodies in frontend development and introduces Zod, a TypeScript schema library, as the solution.
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.
A TypeScript talk write-up on creating advanced types for the Commander.js library to improve CLI development safety and developer experience.
A guide on using KeePass programmatically with TypeScript to securely manage and retrieve test credentials from an encrypted database.
Explains the software design principle of programming to an interface vs. implementation, using a TypeScript list renderer example to show benefits for maintainable code.
Explains the Dependency Inversion Principle (DIP) from SOLID, showing how to implement it in JavaScript/TypeScript to decouple high-level and low-level modules.