Skip to content

Latest commit

 

History

History
55 lines (43 loc) · 1.01 KB

README.md

File metadata and controls

55 lines (43 loc) · 1.01 KB

Design Patterns in Typescript

Content

Principles

  • Open Close Principle
  • Dependency Inversion Principle
  • Interface Segregation Principle
  • Single Responsibility Principle
  • Liskov’s Sustitution Principle

Creational

  • Singleton
  • Factory Method/Factory
  • Abstract Factory
  • Builder
  • Prototype

Structural

  • Adapter
  • Bridge
  • Composite
  • Decorator
  • Flyweight
  • Proxy
  • Facade

Behavioral

  • Chain of Responsibility
  • Command
  • Interpreter
  • Iterator
  • Mediator
  • Memento
  • Observer
  • State
  • Strategy
  • Template Method
  • Visitor

References