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

@uginroot/ts-di-container

v1.0.0

Published

[![Build Status](https://travis-ci.com/uginroot/ts-di-container.svg?branch=master)](https://travis-ci.com/alexeykhr/ts-di-container) [![Coverage Status](https://coveralls.io/repos/github/uginroot/ts-di-container/badge.svg?branch=master)](https://coveralls

Downloads

5

Readme

ts-di-container

Build Status Coverage Status npm version License: MIT

Description

This package provides a DI (Dependency Injection) container for TypeScript. It includes functions for automatically injecting dependencies into classes, decorators for automatically injecting classes, and dependency injection.

Installation

npm install ts-di-container

Use

Container

The Container class represents a DI container. It provides methods for registering and retrieving dependencies. These methods are divided into two interfaces, ContainerInterface and ContainerSetterInterface. These interfaces are automatically registered with the container when it is created.

import {Container, singleton, factory, makeToken, inject} from 'ts-di-container';

const container = new Container();

class Singleton {}
container.set(Singleton, () => new Singleton());
console.log(container.get(Singleton) instanceof Singleton);         // true
console.log(container.get(Singleton) === container.get(Singleton)); // true

class Factory {}
container.setFactory(Factory, () => new Factory());
console.log(container.get(Factory) instanceof Factory);         // true
console.log(container.get(Factory) === container.get(Factory)); // false <---

class Instance {}
container.setInstance(Factory, new Instance());
console.log(container.get(Instance) instanceof Instance);         // true
console.log(container.get(Instance) === container.get(Instance)); // true

abstract class BindInterface {}
class Bind extends BindInterface {}
container.set(Bind, () => new Bind());
container.setBind(BindInterface, Bind);
console.log(container.get(BindInterface) instanceof Bind);                  // true
console.log(container.get(BindInterface) === container.get(BindInterface)); // true

@singleton()
class AutoWareSingleton {
    public constructor() {}
}
console.log(container.get(AutoWareSingleton) instanceof AutoWareSingleton);         // true
console.log(container.get(AutoWareSingleton) === container.get(AutoWareSingleton)); // true

@factory()
class AutoWareFactory {
    public constructor() {
    }
}
console.log(container.get(AutoWareFactory) instanceof AutoWareFactory);         // true
console.log(container.get(AutoWareFactory) === container.get(AutoWareFactory)); // false <---

// Auto ware
@singleton()
class TestClass {}
const TOKEN = makeToken<string>("token description");
@singleton()
class AutoWare {
    public constructor(
        public testClass: TestClass,
        @inject(TOKEN) public str: string
    ) {}
}
container.setInstance(TOKEN, "test");
console.log(container.get(AutoWare) instanceof AutoWare);            // true
console.log(container.get(AutoWare) === container.get(AutoWare));    // true
console.log(container.get(AutoWare).testClass instanceof TestClass); // true
console.log(container.get(AutoWare).str === container.get(TOKEN));   // true

ChildContainer

import { Container } from 'ts-di-container';

class TestParent {}
class TestChild {}

const container = new Container();
const childContainer = container.createChildContainer();

container.set(TestParent, () => new TestParent());
childContainer.set(TestChild, () => new TestChild());

console.log(container.has(TestParent)); // true
console.log(container.has(TestChild));  // false <---

console.log(childContainer.has(TestParent)); // true
console.log(childContainer.has(TestChild));  // true

@singleton()
class AnyContainerAvailable {}

console.log(container.has(AnyContainerAvailable));      // true
console.log(childContainer.has(AnyContainerAvailable)); // true

Interfaces & Types

export type AbstractClass<T = unknown> = Function & { prototype: T, name: string };
export type ClassConstructor<T = unknown> = new (...args: any[]) => T;
export type Token<T> = symbol;

export type Key<T> = ClassConstructor<T> | AbstractClass<T> | Token<T>;
export abstract class ContainerInterface {
    public abstract get<T>(key: Key<T>): T;
    public abstract has<T>(key: Key<T>): boolean;
}
export abstract class ContainerSetterInterface {
    public abstract setInstance<T>(key: Key<T>, value: T): ContainerInterface;
    public abstract setBind<T>(key: Key<T>, value: ClassConstructor<T>): ContainerInterface;
    public abstract setFactory<T>(key: Key<T>, value: (container: ContainerInterface) => T): ContainerInterface;
    public abstract set<T>(key: Key<T>, value: (container: ContainerInterface) => T): ContainerInterface;
}

Simple example

// ./Dependency.ts
export abstract class DependencyInterface {}
export class Dependency implements DependencyInterface {}
// ./AnyClass.ts
import { DependencyInterface } from './Dependency';

export abstract class AnyClassInterface {}
export class AnyClass implements AnyClassInterface {
    public constructor(
        public dependency: DependencyInterface,
        public setting1: string,
        public setting2: string,
    ) {}
}
// ./di-tokens.ts
import { makeToken, Token } from 'ts-di-container';

export const SETTING1 = makeToken<string>("setting1");
export const SETTING2 = Symbol("setting2") as Token<string>; // alternative
// ./main.ts
import { Container } from 'ts-di-container';
import { DependencyInterface, Dependency } from './Dependency';
import { AnyClassInterface, AnyClass } from './AnyClass';
import { SETTING1, SETTING2 } from './di-tokens';

const container: ContainerInterface = (() => {
    const container = new Container();
    
    container.setInstance(SETTING1, "value1");
    container.setInstance(SETTING2, "value2");
    container.set(DependencyInterface, (container: ContainerInterface) => {
        return new Dependency();
    });
    container.set(AnyClassInterface, (container: ContainerInterface) => {
        return new AnyClass(
            container.get(DependencyInterface),
            container.get(SETTING1),
            container.get(SETTING2),
        );
    });
    return container.get(ContainerInterface);
})();

const anyClass = container.get(AnyClassInterface);

Simple example with decorators

// ./Dependency.ts
import { singleton } from 'ts-di-container';

abstract class DependencyInterface {}
@singleton()
class Dependency implements DependencyInterface {}
// ./AnyClass.ts
import { singleton, inject } from 'ts-di-container';
import { SETTING1, SETTING2 } from './di-tokens';
import { DependencyInterface } from './Dependency';

abstract class AnyClassInterface {}
@singleton()
class AnyClass implements AnyClassInterface {
    public constructor(
        public dependency: DependencyInterface,
        @inject(SETTING1) public setting1: string,
        @inject(SETTING2) public setting2: string,
    ) {}
}
// ./di-tokens.ts
import { makeToken, Token } from 'ts-di-container';

const SETTING1 = makeToken<string>("setting1");
const SETTING2 = Symbol("setting2") as Token<string>; // alternative
// ./main.ts
import { Container } from 'ts-di-container';
import { DependencyInterface, Dependency } from './Dependency';
import { AnyClassInterface, AnyClass } from './AnyClass';
import { SETTING1, SETTING2 } from './di-tokens';

const container: ContainerInterface = (() => {
    const container = new Container();

    container.setInstance(SETTING1, "value1");
    container.setInstance(SETTING2, "value2");
    container.setBind(DependencyInterface, Dependency);
    container.setBind(AnyClassInterface, AnyClass);

    return container.get(ContainerInterface);
})();

const anyClass = container.get(AnyClassInterface);