1.0.0 • Published 10 months ago

dainty-di v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
10 months ago

dainty-di

Branches Functions Lines Statements Jest coverage

Yet another light dependency injection lib for Node.js. It's based on TypeScript legacy decorators.

You can use it to provide dependency injection capabilities for your application, or to build Web frameworks.

Documentation

Feature Preview

Basic DI

import { Provide } from 'dainty-di';

@Provide()
export class Foo {}

@Provide()
class Bar {
  // Inject Foo
  constructor(private foo: Foo) {}

  // You can also declare dependencies on properties
  // instead of on constructor arguments
  @Inject()
  private foo: Foo;
}

Scope, Condition and Overriding

import { Provide, ProviderScope } from 'dainty-di';

@Provide({ scope: ProviderScope.Transient })
export class Foo {}

@Provide({ id: Foo, condition: 'production', override: true })
export class FooProd {}

Imperative Interface

import { DIUtility, ProviderType } from 'dainty-di';
import { Foo } from 'some-external';

DIUtility.provideValue({
  id: Symbol.for('answer'),
  value: 42,
});

DIUtility.provideClass({
  id: Foo,
  value: Foo,
  scope: ProviderScope.Transient,
});

DIUtility.getDependency(Symbol.for('answer')); // 42
DIUtility.getDependency(Foo) instanceof Foo; // true
1.0.0

10 months ago

0.1.2

1 year ago

0.1.1

1 year ago

0.1.0

1 year ago