Dependency injection container (DIC), PSR-11 inspired.
- node: 16
- chubbyts/chubbyts-dic-types: ^1.2.1
Through NPM as @chubbyts/chubbyts-dic.
npm i @chubbyts/chubbyts-dic@^1.2.0
import { Container } from '@chubbyts/chubbyts-dic-types/dist/container';
import { createContainer } from '@chubbyts/chubbyts-dic/dist/container';
import { Logger } from 'some-logger/dist/logger';
import { createMyService, decorateMyService, MyService } from './service/my-service';
const container = createContainer();
container.sets(new Map([
['myService', (container: Container): MyService => {
return createMyService(container.get<Logger>('logger'));
}]
]));
import { Container } from '@chubbyts/chubbyts-dic-types/dist/container';
import { createContainer, createParameter, Factory } from '@chubbyts/chubbyts-dic/dist/container';
import { Cache } from 'some-cache/dist/cache';
import { Logger } from 'some-logger/dist/logger';
import { createMyService, MyService } from './service/my-service';
const container = createContainer();
// new
container.set('myService', (container: Container): MyService => {
return createMyService(container.get<Logger>('logger'));
});
// existing (replace)
container.set('myService', (container: Container): MyService => {
return createMyService(container.get<Logger>('logger'));
});
// existing (extend)
container.set('myService', (container: Container, existingFactory?: Factory): MyService => {
if (!existingFactory) {
throw 'Missing service';
}
return decorateMyService(existingFactory(container), container.get<Cache>('cache'));
});
// parameter
container.set('param', createParameter('value'));
import { createContainer } from '@chubbyts/chubbyts-dic/dist/container';
import { MyService } from './service/my-service';
const container = createContainer();
container.get<MyService>('myService');
import { createContainer } from '@chubbyts/chubbyts-dic/dist/container';
const container = createContainer();
container.has('myService');
2024 Dominik Zogg