gell-dependency
v0.0.5
Published
gell based approach to dependency injection
Downloads
12
Readme
gell-dependency
dependency management for gell
Container
Hierarchical data structure housing objects shared by multiple modules in a system. Using a dependency container allows a system to define shared objects upfront, separate from business logic
Dependency Types
- constant
- singleton
- prototype
Defining Dependencies
V1 Notes
- via constructor
- via set method
- via container branching
V2 Brainstorm
- don't really want to do a bunch of unnecessary branching
set
isn't used a lot- prototype objects are difficult to implement
Instantiating Dependencies
- ...
Resolving Dependencies
- ...