Skip to content
This repository has been archived by the owner on Apr 18, 2024. It is now read-only.

Latest commit

 

History

History
12 lines (10 loc) · 591 Bytes

review.md

File metadata and controls

12 lines (10 loc) · 591 Bytes

Review

Considerations:

  • What are the preferred ways of implementation a given pattern? e.g reduce, map, each?
  • What asynchrouns behaviour is difficult to implement?
  • Is there a need to write a utility library? Any reusable behaviour? What are the risks?
  • If so, which behaviour should be defined in that library?
  • Should we delegate to an existing lib? What trusted libraries are available?
  • What are the side effects of using third party libs? Any concerns?
  • What can we do directly without the need for abstraction? i.e no lib?
  • What scenarios will we have to use promises?