@netleaf/extensions-dependency-injection-typed
TypeScript icon, indicating that this package has built-in type declarations

0.1.2 • Public • Published

@netleaf/extensions-dependency-injection-typed

Dependency Injection extension for NetLeaf application host framework based on tst-reflection-transformer and inspired by .NET.

To proper use of this package, you need ttypescript and tst-reflect. Watch tst-reflect repository for more information.

How to start

  • Install this package: npm i @netleaf/extensions-dependency-injection-typed,
  • install the tst-reflect transformer: npm i tst-reflect-transformer -D,
  • install ttypescript: npm i ttypescript -D,

Now just add the transformer to the tsconfig.json and run npx ttsc instead of tsc.

{
    "compilerOptions": {
        // your options...

        // ADD THIS!
        "plugins": [
            {
                "transform": "tst-reflect-transformer"
            }
        ]
    }
}

and with Webpack

({
    test: /\.(ts|tsx)$/,
    loader: "ts-loader",
    options: {
        // ADD THIS!
        compiler: "ttypescript"
    }
})

Usage

Run on repl.it

First lets have some services (interfaces and classes):

import { IServiceProvider } from "@netleaf/extensions-dependency-injection-abstract";

interface ITextFormatter
{
    format(text: string);
}

class SpaceColorFormatter implements ITextFormatter
{
    format(text: string)
    {
        return "> " + text;
    }
}

interface ILogger
{
    info(message: string);
}

class ConsoleLogger implements ILogger
{
    private readonly console: Console;

    constructor(private formatter: ITextFormatter, serviceProvider: IServiceProvider)
    {
        this.console = serviceProvider.getService("console");
    }

    info(message: string)
    {
        this.console.info(this.formatter.format(message));
    }
}

Usage:

import { TypedServiceCollection, TypedServiceProvider } from "@netleaf/extensions-dependency-injection-typed";

// Create service collection
const serviceCollection = new TypedServiceCollection();

// Add services into the collection
serviceCollection.addTransient<ILogger, ConsoleLogger>();
serviceCollection.addSingleton<ITextFormatter, SpaceColorFormatter>();
serviceCollection.addSingleton("console", console);
serviceCollection.addSingleton("app.config", { someObject: { eg: "config" } });

// Create ServiceProvider from the ServiceCollection
const serviceProvider = new TypedServiceProvider(serviceCollection);

// Get instance of the ILogger
const logger: ILogger = serviceProvider.getService<ILogger>();

// Get app config
const config = serviceProvider.getService("app.config");

logger.info("Hello World!");
logger.info(JSON.stringify(config));

Output:

> Hello World!
> {"someObject":{"eg":"config"}}

Lifetimes

Services can be registered with one of the following lifetimes:

  • transient,
  • scoped,
  • singleton.

Transient

Services registered with transient lifetime are created each time they're requested from the service provider. This lifetime works best for lightweight, stateless services.

Register transient services with addTransient().

Scoped

Services registered with scoped lifetime are created only once per scope. It is similar to a singleton inside one scope.

Register transient services with addScoped().

Create new scope with serviceProvider.createScope();

Example

// Create service collection
const serviceCollection = new TypedServiceCollection();

// Add "service" into the collection
let scopedId = 0;
serviceCollection.addScoped("scopedId", provider => ++scopedId);

const serviceProvider = new TypedServiceProvider(serviceCollection);

console.log(serviceProvider.getService("scopedId")); // > 1
console.log(serviceProvider.getService("scopedId")); // > 1

const scope1 = serviceProvider.createScope();
console.log(scope1.serviceProvider.getService("scopedId")); // > 2
console.log(scope1.serviceProvider.getService("scopedId")); // > 2

const scope2 = serviceProvider.createScope();
console.log(scope2.serviceProvider.getService("scopedId")); // > 3
console.log(scope2.serviceProvider.getService("scopedId")); // > 3

console.log(serviceProvider.getService("scopedId")); // > 1
console.log(serviceProvider.getService("scopedId")); // > 1

Singleton

Services registered with scoped lifetime are created only once. Single instance is used for whole application. Same instance is returned each time it is requested from the service provider, through all scopes.

Register transient services with addSingleton().

Readme

Keywords

none

Package Sidebar

Install

npm i @netleaf/extensions-dependency-injection-typed

Weekly Downloads

1

Version

0.1.2

License

MIT

Unpacked Size

41.2 kB

Total Files

18

Last publish

Collaborators

  • netleaf