New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

cleandi

Package Overview
Dependencies
Maintainers
1
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cleandi

Type safe and clean dependency injector

latest
Source
npmnpm
Version
9.0.3
Version published
Maintainers
1
Created
Source

Clean DI is a type-safe, lightweight and easy to use dependency injection container. It comes in sync and async flavours and allows you to create dependency providers from class constructors, functions and plain values.

The main selling points of this library are:

  • type safety if you use it with typescript, meaning you won't get unexpected type errors at runtime
  • clean in the sense you don't 'taint' your code and third party code with decorators, imports or bloated unnatural stuff
  • backwards compatible with old browsers or nodejs versions because it uses ES5 and nothing else
  • zero dependencies project when you use npm install cleandi
  • fluent API with intellisense, very easy to leverage
  • testable, because calling build() checks your dependency tree without side effects
  • very small in bundle size and very fast in execution
  • can work in async fashion too
  • you can also use it vanilla js, although you won't get type safety
import {builder} from 'cleandi';

const provider = builder<Provider>
    .bindClass('clock', Clock, d => [d.clockName, d.startingTime] as const)
    .bindFunction('startingTime', getNow)
    .bindValue('clockName', 'my-clock')
    .build('clock', 'startingTime', 'clockName');

const time = provider.clock.time();

interface Provider {
 clock: IClock;
 clockName: string;
 startingTime: Date;
}

interface IClock {
 time(): Date;
}

class Clock implements IClock {
 constructor(name: string, startingTime: Date) {...}
 time() {...}
}

function getNow() {...}

You start by calling builder<T>() where T is the object you want to create. The magic resides here because all the API is aware of T and it won't let you do wrong things. Then, you get a builder object where you can chain bind methods. There are bindings for class constructors, functions and values. On each of them, you have to specify a field of T, and provide the constructor, function or value for that. For constructors and functions you are required to specify the arguments too, but the beauty you can use other fields of T as args if you want. Then, you call build specifying all the T fields to create the dependency provider. This step is a tradeoff necessary to check if the types where defined in runtime. Finally, with the provider you can get instances previously defined just querying by it's name.

// async provider example
import {asyncBuilder} from 'cleandi';

const provider = asyncBuilder<Provider>
    .bindAsyncFunction('data', logInConsole)
    .bindValue('logger', console.log)
    .build('data', 'logger');
    
await provider.logger(await provider.data);
    
interface Provider {
    logger: (msg: string) => void;
    data: string;
}

async function getDataFromDb() {...}

There were more than 2000 dependency injection libraries and frameworks in npmjs before starting this project, so why make one more?
This library is my own take on Dependency Injection after reviewing the state of the art and tries to be as much typesafe as possible without lossing other important goals which are:

  • Original dependency code doesn't need to be modified
  • The dependencies are typesafe and scalable enough

The library relies on a small runtime check apart from types which ensures the dependencies are right. This was the better solution I have found to keep the library as typesafe, scalable and simple as possible.

Keywords

di

FAQs

Package last updated on 22 Nov 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts