Skip to content

danvk/effective-typescript

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Effective TypeScript

This is the code sample repo for the Effective TypeScript: 83 Specific Ways to Improve Your TypeScript (O'Reilly, May 2024). The book is available through:

and others. You can get the latest updates on the book at effectivetypescript.com.

Still on the first edition? Check out the 1st-edition branch.

Code Samples

Below you'll find a complete table of contents. Each item links to a page with its "Things to Remember" (a short summary of the item) and a listing of all its code samples. The code samples are accompanied by links to the TypeScript playground. They should produce the expected errors (and no others) and expected types.

Unless otherwise noted in a comment at the top of the code sample, the samples are run with TypeScript's strict setting. These were produced and checked using literate-ts and TypeScript 5.4.5.

  • Chapter 1: Getting to Know TypeScript

    • 📝 Item 1: Understand the Relationship Between TypeScript and JavaScript
    • 📝 Item 2: Know Which TypeScript Options You're Using
    • 📝 Item 3: Understand That Code Generation Is Independent of Types
    • 📝 Item 4: Get Comfortable with Structural Typing
    • 📝 Item 5: Limit Use of the any Type
  • Chapter 2: TypeScript's Type System

    • 📝 Item 6: Use Your Editor to Interrogate and Explore the Type System
    • 📝 Item 7: Think of Types as Sets of Values
    • 📝 Item 8: Know How to Tell Whether a Symbol Is in the Type Space or Value Space
    • 📝 Item 9: Prefer Type Annotations to Type Assertions
    • 📝 Item 10: Avoid Object Wrapper Types (String, Number, Boolean, Symbol, BigInt)
    • 📝 Item 11: Distinguish Excess Property Checking from Type Checking
    • 📝 Item 12: Apply Types to Entire Function Expressions When Possible
    • 📝 Item 13: Know the Differences Between type and interface
    • 📝 Item 14: Use readonly to Avoid Errors Associated with Mutation
    • 📝 Item 15: Use Type Operations and Generic Types to Avoid Repeating Yourself
    • 📝 Item 16: Prefer More Precise Alternatives to Index Signatures
    • 📝 Item 17: Avoid Numeric Index Signatures
  • Chapter 3: Type Inference and Control Flow Analysis

  • Chapter 4: Type Design

    • 📝 Item 29: Prefer Types That Always Represent Valid States
    • 📝 Item 30: Be Liberal in What You Accept and Strict in What You Produce
    • 📝 Item 31: Don’t Repeat Type Information in Documentation
    • 📝 Item 32: Avoid Including null or undefined in Type Aliases
    • 📝 Item 33: Push Null Values to the Perimeter of Your Types
    • 📝 Item 34: Prefer Unions of Interfaces to Interfaces with Unions
    • 📝 Item 35: Prefer More Precise Alternatives to String Types
    • 📝 Item 36: Use a Distinct Type for Special Values
    • 📝 Item 37: Limit the Use of Optional Properties
    • 📝 Item 38: Avoid Repeated Parameters of the Same Type
    • 📝 Item 39: Prefer Unifying Types to Modeling Differences
    • 📝 Item 40: Prefer Imprecise Types to Inaccurate Types
    • 📝 Item 41: Name Types Using the Language of Your Problem Domain
    • 📝 Item 42: Avoid Types Based on Anecdotal Data
  • Chapter 5: Unsoundness and the any Type

    • 📝 Item 43: Use the Narrowest Possible Scope for any Types
    • 📝 Item 44: Prefer More Precise Variants of any to Plain any
    • 📝 Item 45: Hide Unsafe Type Assertions in Well-Typed Functions
    • 📝 Item 46: Use unknown Instead of any for Values with an Unknown Type
    • 📝 Item 47: Prefer Type-Safe Approaches to Monkey Patching
    • 📝 Item 48: Avoid Soundness Traps
    • 📝 Item 49: Track Your Type Coverage to Prevent Regressions in Type Safety
  • Chapter 6: Generics and Type-Level Programming

    • 📝 Item 50: Think of Generics as Functions Between Types
    • 📝 Item 51: Avoid Unnecessary Type Parameters
    • 📝 Item 52: Prefer Conditional Types to Overload Signatures
    • 📝 Item 53: Know How to Control the Distribution of Unions over Conditional Types
    • 📝 Item 54: Use Template Literal Types to Model DSLs and Relationships Between Strings
    • 📝 Item 55: Write Tests for Your Types
    • 📝 Item 56: Pay Attention to How Types Display
    • 📝 Item 57: Prefer Tail-Recursive Generic Types
    • 📝 Item 58: Consider Codegen as an Alternative to Complex Types
  • Chapter 7: TypeScript Recipes

    • 📝 Item 59: Use never Types to Perform Exhaustiveness Checking
    • 📝 Item 60: Know How to Iterate Over Objects
    • 📝 Item 61: Use Record Types to Keep Values in Sync
    • 📝 Item 62: Use Rest Parameters and Tuple Types to Model Variadic Functions
    • 📝 Item 63: Use Optional never Properties to Model Exclusive Or
    • 📝 Item 64: Consider Brands for Nominal Typing
  • Chapter 8: Type Declarations and @types

  • Chapter 9: Writing and Running Your Code

  • Chapter 10: Modernization and Migration

    • 📝 Item 79: Write Modern JavaScript
    • 📝 Item 80: Use @ts-check and JSDoc to Experiment with TypeScript
    • 📝 Item 81: Use allowJs to Mix TypeScript and JavaScript
    • 📝 Item 82: Convert Module by Module Up Your Dependency Graph
    • 📝 Item 83: Don't Consider Migration Complete Until You Enable noImplicitAny