servicemanager icon indicating copy to clipboard operation
servicemanager copied to clipboard

[Deprecated] 🔌 Most basic implementation of dependency injection container for JavaScript

Results 21 servicemanager issues
Sort by recently updated
recently updated
newest added

Need a new feature for passing current service context to service resolver. ```js const context = new ServiceContext(container => { container.set('mongodb', transient(MongoConnection)); container.set('userRepository', transient(ctx => new UserRepository(ctx.get('mongodb')))); }); ```

enhancement