Built a dependency injection container to learn how one actually works. Used this note as a handbook for building it.
This project was built using:
- Node.js
To run this project, clone the repository using the following command:
git clone https://github.com/guisaliba/di-container.git
Then run:
cd src
node index.js
Understanding Dependency Injection by writing a DI Container - from scratch!