Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 797 Bytes

discussion.md

File metadata and controls

22 lines (20 loc) · 797 Bytes

Why

https://github.com/ts-common

  • Q. Why a lot of small libraries and small repositories? A. Separation of concerns
  • Q. Why we can't use existing libraries? A. In some cases, we can but there are some advantages to write a new one - Typescript - lightweight - freedom - modern concepts - practice and learning
  • Q. Could we use one monolitic repository? A. It will be heavy for development/build/test and it will contain a lot of dependencies which will prevent you to try new concepts.
  • Q. Other languages A. For example, Rust https://github.com/rust-common
  • Q. Challenges