I want to use Angular DI as standalone module for Node's webserver.
- first level is root injector
- second level is child of root injector; its need per request for original Node's
http.IncomingMessageandhttp.ServerResponse. - third level is child of second injector; its need to create new instancies of my Request and Response classes, etc.
I worry about when DI removed child injectors. I need to removed them manually?