Modules

1 min read ยท last updated at

Modules, packages, libraries, namespaces, all of these terms refer to the concept of grouping code. Most programming languages have such a mechanism, but for many frameworks this is not enough. They provide higher-level abstractions that their users can hook into, to group and share functionality.

  • Often closely coupled to the frameworks DI container

Implementations