@chubbyts/chubbyts-dic
Version:
Dependency injection container (DIC), PSR-11 inspired.
119 lines (84 loc) • 5.07 kB
Markdown
# chubbyts-dic
[](https://github.com/chubbyts/chubbyts-dic/actions?query=workflow%3ACI)
[](https://coveralls.io/github/chubbyts/chubbyts-dic?branch=master)
[](https://dashboard.stryker-mutator.io/reports/github.com/chubbyts/chubbyts-dic/master)
[](https://www.npmjs.com/package/@chubbyts/chubbyts-dic)
[](https://sonarcloud.io/dashboard?id=chubbyts_chubbyts-dic)
[](https://sonarcloud.io/dashboard?id=chubbyts_chubbyts-dic)
[](https://sonarcloud.io/dashboard?id=chubbyts_chubbyts-dic)
[](https://sonarcloud.io/dashboard?id=chubbyts_chubbyts-dic)
[](https://sonarcloud.io/dashboard?id=chubbyts_chubbyts-dic)
[](https://sonarcloud.io/dashboard?id=chubbyts_chubbyts-dic)
[](https://sonarcloud.io/dashboard?id=chubbyts_chubbyts-dic)
[](https://sonarcloud.io/dashboard?id=chubbyts_chubbyts-dic)
[](https://sonarcloud.io/dashboard?id=chubbyts_chubbyts-dic)
[](https://sonarcloud.io/dashboard?id=chubbyts_chubbyts-dic)
[](https://sonarcloud.io/dashboard?id=chubbyts_chubbyts-dic)
## Description
Dependency injection container (DIC), [PSR-11][2] inspired.
## Requirements
* node: 22
* [chubbyts/chubbyts-dic-types][3]: ^2.2.0
## Installation
Through [NPM](https://www.npmjs.com) as [@chubbyts/chubbyts-dic][1].
```ts
npm i @chubbyts/chubbyts-dic@^2.2.0
```
## Usage
### Sets
```ts
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'));
}]
]));
```
### Set
```ts
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'));
```
### Get
```ts
import { createContainer } from '@chubbyts/chubbyts-dic/dist/container';
import { MyService } from './service/my-service';
const container = createContainer();
container.get<MyService>('myService');
```
### Has
```ts
import { createContainer } from '@chubbyts/chubbyts-dic/dist/container';
const container = createContainer();
container.has('myService');
```
## Copyright
2026 Dominik Zogg
[1]: https://www.npmjs.com/package/@chubbyts/chubbyts-dic
[2]: https://www.php-fig.org/psr/psr-11
[3]: https://www.npmjs.com/package/@chubbyts/chubbyts-dic-types