@ns3/di
TypeScript icon, indicating that this package has built-in type declarations

5.0.1 • Public • Published

@ns3/di

npm version bundlephobia bundlephobia

This is a powerful and lightweight (weights around 5 KB) dependency injection container for TypeScript. It is designed to be used on both browser and node.js server.

It was inspired by:

📦 Installation

You can get the latest release and the type definitions using your preferred package manager:

> npm install @ns3/di reflect-metadata
> yarn add @ns3/di reflect-metadata
> pnpm add @ns3/di reflect-metadata

Hint! If you want to use a more type-safe version of reflect-metadata, try @abraham/reflection

Configuration

To use decorators enable compilation options in your tsconfig.json file:

{
  "compilerOptions": {
    "experimentalDecorators": true,
    "emitDecoratorMetadata": true
  }
}

And once in your application import reflect-metadata:

import 'reflect-metadata';

// ...

Usage

Please refer to e2e spec for examples of usage.

The most basic usage is:

import 'reflect-metadata';
import { Container, Injectable } from '@ns3/di';

@Injectable()
class DependencyClass {
  name = 'implementation dependency';
}

@Injectable()
class MasterClass {
  name = 'implementation master';

  constructor(public dep: DependencyClass) {}
}

const container = Container.make();
const instance = container.get(MasterClass);

A note about classes and interfaces

Typescript interfaces only exist at development time, to ensure type checking. When compiled, they do not generate runtime code. This ensures good performance, but also means that is not possible to use interfaces as the type of a property being injected. There is no runtime information that could allow any reflection on interface type. Take a look at https://github.com/Microsoft/TypeScript/issues/3628 for more information about this.

So:

import 'reflect-metadata';
import { Container, Injectable } from '@ns3/di';

const container = Container.make();

interface IPersonDAO {
  get(id: string): Person;
}

abstract class PersonDAO implements IPersonDAO {
  get(id: string): Person;
}

class PersonDAOImpl implements IPersonDAO {
  get(id: string): Person {
    // get the person and return it...
  }
}

// NOT SUPPORTED
container.provide({ token: IPersonDAO, useClass: PersonDAOImpl });

// SUPPORTED
container.provide({ token: PersonDAO, useClass: PersonDAOImpl });

Restrictions

  • Circular injections are not supported.
  • You can only inject types that are already defined into your file.

Package Sidebar

Install

npm i @ns3/di

Weekly Downloads

56

Version

5.0.1

License

MIT

Unpacked Size

24.4 kB

Total Files

23

Last publish

Collaborators

  • bielik20