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

injected-ts

v2.0.0

Published

Simple DI container for TypeScript. More about at https://github.com/remihenache/injected-ts

Downloads

136

Readme

Injected-ts: Simplifying Dependency Injection in TypeScript

Injected-ts is a lightweight dependency injection library for TypeScript that simplifies managing dependencies and enables efficient dependency injection in your applications. With Injected-ts, you can effortlessly handle dependency registration, resolution, and lifecycle management, resulting in cleaner and more modular code. This readme provides an overview of Injected-ts and demonstrates how to use it effectively in your projects.

Features

  • Dependency Registration: Injected-ts allows you to register dependencies using a fluent and intuitive API.
  • Flexible Lifecycle Management: Choose from a variety of lifecycle options, including scoped, transient, and singleton.
  • Constructor Parameter Injection: Easily configure dependencies with constructor parameter injection.
  • Interface Injection: Register implementations for interfaces and resolve them by the interface identifier.
  • Scopes and Lifecycles: Create and manage scopes to control the lifetime of your dependencies.
  • Type Safety and IntelliSense: Benefit from TypeScript's static typing and receive accurate IntelliSense support.

Installation

You can install Injected-ts using npm or yarn:

npm install injected-ts

Usage

Creating a Service Collection The ServiceCollection class is the starting point for configuring and registering your services. Create an instance of ServiceCollection to begin the process:

import { ServiceCollection } from 'injected-ts';

const services = new ServiceCollection();

Registering Dependencies

Use the various addScoped, addTransient, and addSingleton methods to register your dependencies. These methods allow you to specify the dependency type and the registration configuration:

services.addScoped<MyService>((builder) =>
  builder.fromType(MyService).withDependencies(Dependency1, Dependency2)
);

services.addTransient<AnotherService>((builder) =>
  builder.fromType(AnotherService)
);

services.addSingleton<SharedService>((builder) =>
  builder.fromType(SharedService)
);

Resolving Dependencies

To resolve a dependency, create an instance of ServiceProvider using the build method of ServiceCollection:

const serviceProvider = services.build();

const myService = serviceProvider.get<MyService>(MyService.name);
const anotherService = serviceProvider.get<AnotherService>(AnotherService.name);
const sharedService = serviceProvider.get<SharedService>(SharedService.name);

Scopes and Lifecycles

Breaking changes in version 1.1.0

The old scope management has been removed in favor of a new, more flexible approach. The new scope management allows multiple scopes to be created and managed independently. You can create scopes using the startScope method of ServiceProvider and manage the lifetime of dependencies within those scopes:

const scopeResolver = serviceProvider.startScope();
// Resolve scoped dependencies within the scope
const scopedService = scopeResolver.get<MyService>(MyService.name);

// Dispose the scope to release the scoped dependencies
scopeResolver.dispose();

Constructor Parameter Injection

Injected-ts supports constructor parameter injection. When registering a dependency, use the withDependencies method to specify the constructor dependencies:

services.addScoped<MyService>((builder) =>
  builder.fromType(MyService).withDependencies(Dependency1, Dependency2)
);

Interface Injection

You can register interface implementations and resolve them using the interface identifier:

services.addScoped<ILogger>((builder) =>
  builder.fromName('ILogger').useType(ConsoleLogger).withDependencies()
);

const logger = serviceProvider.get<ILogger>('ILogger');

Lifecycle Options

Injected-ts provides the following lifecycle options for managing the lifetime of dependencies:

  • Scoped: Dependencies are instantiated once per scope.
  • Transient: Dependencies are instantiated each time they are resolved.
  • Singleton: Dependencies are instantiated only once and reused for subsequent resolutions. You can specify the lifecycle using the addScoped, addTransient, and addSingleton methods:
services.addScoped<MyService>((builder) =>
  builder.fromType(MyService).withDependencies(Dependency1, Dependency2)
);

Custom Lifecycle Options

Injected-ts provides the possibility to create our own lifecycle:

Override the Lifecycle class and implement the lifecycle methods. Then add your service using the add() methods, and provide your own lifecycle.

class CustomLifecycle implements Lifecycle {
  // Implement the lifecycle methods
}

services.add<MyService>(new CustomLifecycle(), (builder) =>
  builder.fromType(MyService).withDependencies(Dependency1, Dependency2)
);

Use the ServiceProvider inside a class or a factory

Injected-ts provides the possibility to access the service provider instance by injecting it inside a class or a factory:

  • Injection
class MyService {
    constructor(serviceProvider: ServiceProvider) {
    }

    public doSomething() {
        const anotherService = this.serviceProvider.get<AnotherService>(AnotherService.name);
        // Do something with the service
    }
}
  • Factory
services.addSingleton<ServiceDependency>((builder) =>
    builder.fromType(ServiceDependency.name).withDependencies(TypeDependency)
);
services.addSingleton<MyService>((builder) =>
    builder.fromName('MyService').useFactory((serviceProvider) => new MyService("Some value", serviceProvider.get<ServiceDependency>(ServiceDependency.name)))
);

Conclusion

Injected-ts simplifies dependency injection in TypeScript by providing a lightweight and intuitive solution for managing dependencies and controlling their lifecycles. By following the usage guidelines in this readme, you can leverage the power of dependency injection to build modular, maintainable, and scalable applications.

For more details and advanced usage options, refer to the API Documentation.

License

Injected-ts is licensed under the MIT License. See the LICENSE file for details.