npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

tsjs-di

v1.0.1

Published

Typescript (decorator/annotation) and javascript dependency injector

Downloads

16

Readme

tsjs-di

A seamless dependency injector for typescript and javascript.

Installation

npm install tsjs-di

Usage

Typescript

Importing the dependency injector

import {DI} from 'tsjs-di';

Creating providers

./providerA.ts

export class ProviderA {
    name = 'ProviderA';
    constructor(){

    }
}

Providers will be injected as singletons into all dependants, to inject multi instance a provider must be decorated with @Provider({multi: true}) or registered with the multi option set to true.

A Provider can also have its dependencies injected if it is decorated with @Provider() or Inject().

./providerB.ts

import {Provider} from 'tsjs-di';
import {ProviderA} from './providerA';

@Provider({multi: true})
export class ProviderB {
    name = 'providerB';
    constructor(private provider: ProviderA){
        console.log(provider.name);
    }
}

Creating dependants

A dependant class must be marked with @Inject() decorator to have its dependencies injected.

./dependantA.ts

import {Inject} from 'tsjs-di';
import {ProviderA} from './providerA';

@Inject()
export class DependantA {
    provider: ProviderA;
    // the type of the provider is important to have the dependency inject by the DI
    constructor(provider: ProviderA){
        this.provider = provider;
    }
}

A dependency can also be injected into a class property by decorating the property with @Inject() decorator and specifying the type of the dependency.

./dependantB.ts

import {Inject} from 'tsjs-di';
import {ProviderB} from './providerB';

export class DependantB{
    @Inject()
    provider: ProviderB;
    constructor(){
        console.log(this.provider.name);
    }
}

Register providers and running the DI

index.ts

import {DI} from 'tsjs-id';
import {ProviderA} from './providerA';
import {ProviderB} from './providerB';
import {DependantA} from './dependantA';
import {DependantB} from './dependantB';

// register by specifying the class only
DI.register(ProviderA)

// Or by supplying a provider object
DI.register({provide: ProviderB, useClass: ProviderB});

// specifying a factory
DI.register({provide: ProvideA, useFactory: (di) => {
    return new ProviderA();
}});

// Or by specifiying an array with the above methods
DI.register([
    ProviderA,
    {provide: ProviderB, useClass: ProviderB}
]);

// You can also provide a value;

export class Config {
    name: string,
    author: string;
}

const value: Config = {
    name: 'tsjs-di',
    author: 'Jonas Tomanga';
}

DI.register({provide: 'Config', useValue: value });

// putting the DI into action

class App{
    @Inject()
    provider: ProviderB;
    constructor(private providerA: ProviderA){

    }

    emit(){
        return {
            name: this.providerB.name,
            nameB: this.providerA.name;
        }
    }
}

const app = new App(); // this will produce an error in the IDE
// altentively
const app = new App(undefined);

app.emit();

The DI will inject the dependencies as long as the parameters are not defined on call.

Javascript

Since there is no type support in javascript, dependencies have to be injected manually. This methods can also be used in typescript.

Simple Example


const DI = require('tsjs-di').DI;

class Provider {
    name = 'Provider';
    constructor(){

    }
}


class Dependant {
    constructor(provider = DI.inject('Provider')){
        this.provider = provider;
    }
}
// register the provider
DI.register(Provider);

const dep = new Dependant();
// or
const dep = new Depedant(DI.inject(Provider));

Factory Example

./logger.js

class Logger {
    constructor(){

    }

    log(message){
        console.log(message);
    }
}

module.exports = Logger;

./factory-provider.js

const DI = require('tsjs-di').DI;

class FactoryProvider {
    constructor(loggger){
        this.logger = logger;
    }

    log(message){
        this.logger.log(message);
    }

    static create(di){
        return new FactoryProvider(di.inject('Logger'));
    }
}

module.exports = FactoryProvider;

./index.js

const DI = require('tsjs-di').DI;
const Logger = require('logger');
const FactoryProvider = require('factory-provider');

DI.clear();
DI.register([{
    Logger,
    {provide: FactoryProvider, useFactory: FactoryProvider.create}
}]);

const provider = DI.inject('FactoryProvider');
provide.log('Hello, world!');

API

.register(providers)

Adds dependency providers to the DI, it takes a class, a provider object or an array of classes and provider object.

provider object

The provider object must have:

  • provide: A string or a Class of the provider

and any of the following:

  • useClass: The class to be used to satisfy the dependency, can be different from the one provided.
  • useFactory: A function to be used to create or instantiate the provider.
  • useValue: The value to be used to satisfy the dependency, it can be of any type.
  • multi: A boolean that indicates if the provider should be multi instance or not.

Throws a TypeError if called with an invalid provider

.inject(type)

Returns a registered provider that matches the specified type. Returns the same instance unless the dependency was registered with the multi option. type can be a string or Class from which the provider can be identified.

Throws a ReferenceError if the provider is not registered.

.get(type)

Returns a new instance of a registered provider that matches the specified type. type can be a string or Class from which the provider can be identified.

Throws a ReferenceError if the provider is not registered.

.exist(type)

Returns true if the specified provider exists, else returns false. type can be a string or Class from which the provider can be identified.

.clear()

Removes all providers