Design Patterns in TypeScript

Table of Contents

  1. Setup Project

Setup Project

  git clone https://github.com/ismaeldevmw/Design-Patterns-In-TypeScript.git
  cd Design-Patterns-In-TypeScript
  npm install

  # compile & watch changes
  npm run start

  # watch the result of src/main.ts
  npm run start:watch

  # run each pattern tutorial separately, e.g,
  node ./dist/factory/factory-concept.js
  node ./dist/factory/client.js