Skip to content

Instantly share code, notes, and snippets.

@fabiomcosta
fabiomcosta / .flowconfig
Last active July 26, 2020 04:45
Fixing immutable 3.8 Flow types without having to upgrade to v4
[ignore]
.*/node_modules/immutable/.*
@nijikokun
nijikokun / doc.md
Last active August 21, 2023 08:00
Building Javascript Frontend / Backend Applications

Document for the best design choices you can make for your software.

Terminology

  • DDD - [Domain Driven Design][ddd-wikipedia]
  • FF or FTF - Function First Design, or File-type First Design is structuring your application by it's function before the files such as a directory named components containing all component files.

File Structure

Structuring applications is hard, here are a few resources to help.