An open API service indexing awesome lists of open source software.

https://github.com/lppedd/di-wise-neo

Lightweight, type-safe, flexible dependency injection library for TypeScript and JavaScript
https://github.com/lppedd/di-wise-neo

decorators dependency dependency-injection di injection ioc javascript js ts typescript

Last synced: 6 months ago
JSON representation

Lightweight, type-safe, flexible dependency injection library for TypeScript and JavaScript

Awesome Lists containing this project

README

          

di-wise-neo



Lightweight, type-safe, flexible dependency injection library for TypeScript and JavaScript

with a strong focus on type correctness and clear error reporting


[![npm](https://img.shields.io/npm/v/@lppedd/di-wise-neo?color=%23de1f1f&logo=npm)](https://www.npmjs.com/package/@lppedd/di-wise-neo)
[![ecmascript](https://img.shields.io/badge/ES-2022-blue?logo=javascript)](https://en.wikipedia.org/wiki/ECMAScript_version_history#13th_edition_%E2%80%93_ECMAScript_2022)
[![status](https://img.shields.io/badge/status-beta-AC29EC)](https://github.com/lppedd/di-wise-neo/blob/main/CHANGELOG.md#0100)
[![build](https://img.shields.io/github/actions/workflow/status/lppedd/di-wise-neo/test.yml.svg?branch=main)](https://github.com/lppedd/di-wise-neo/actions/workflows/test.yml)
[![coverage](https://img.shields.io/codecov/c/github/lppedd/di-wise-neo/main?token=R9XZFTQ0BA)](https://app.codecov.io/gh/lppedd/di-wise-neo/tree/main/src)
[![minified size](https://img.shields.io/bundlejs/size/@lppedd/di-wise-neo)](https://bundlejs.com/?q=@lppedd/di-wise-neo)
[![license](https://img.shields.io/badge/license-MIT-F7F7F7)](https://github.com/lppedd/di-wise-neo/blob/main/LICENSE)


di-wise-neo

> [!NOTE]
> **di-wise-neo** is a fork of [di-wise][di-wise], aiming to provide a simpler yet more powerful API,
> in part thanks to TypeScript's experimental decorators. Shout out to [@exuanbo](https://github.com/exuanbo)
> for the strong foundations!

### Table of Contents

- [Installation](#installation)
- [API reference](#api-reference)
- [Ergonomics & Requirements](#ergonomics)
- [Quickstart](#quickstart)
- [Container scopes](#container-scopes)
- [Token registration](#token-registration)
- [Function-based injection](#function-based-injection)
- [Decorator-based injection](#decorator-based-injection)
- [Behavioral decorators](#behavioral-decorators)
- [Testing support](#testing-support)

### Why yet another library

I've been developing VS Code extensions for a while as part of my daily work.
It's enjoyable work! However, extensions always reach that tipping point where
feature bloat, and the many different UI interactions which arise from that,
make writing, reading, and understanding the codebase a challenge.

Part of the problem is the crazy amount of parameter passing, and the many exported
global values floating around waiting to be imported and to generate yet another
coupling point.

My background with Java is full of such cases that have been (partially) mitigated
by introducing dependency-injection libraries based on Java's powerful Contexts and
Dependency Injection (see [Weld][cdi-weld], the reference implementation).

So why not apply the same concept to our TypeScript projects?
I've posted on Reddit just to get a feel of what the ecosystem offers, and was
pointed to libraries such as [tsyringe][tsyringe], [InversifyJS][InversifyJS], or [Awilix][Awilix].
I've also explored on my own and discovered [redi][redi] and [di-wise][di-wise].

What I was looking for is a lightweight solution that offers:

- Full type safety.
- Scoped resolution of dependencies.
- Optional decorator support for constructor and method injection.
Yes, I know, forget type-safety with decorators, but they are extremely intuitive to pick up for Java devs.
- No dependency on [reflect-metadata][reflect-metadata], as I'm an ESBuild user and ESBuild
[does not][esbuild-issue] support `emitDecoratorMetadata`.

Unfortunately, both [tsyringe][tsyringe] and [InversifyJS][InversifyJS] require
[reflect-metadata][reflect-metadata] to run correctly. [Awilix][Awilix] looks good,
but it's probably too much for what I need to do, and it does not support decorators.
Plus, the API just didn't click for me.

[redi][redi] focuses _only_ on constructor injection via decorators, which is nice.
However, it falls short when it comes to type safety and resolution scopes:
it only supports singletons with a decorator-based trick to create fresh instances.

And lastly, [di-wise][di-wise]. This small library was quite a surprise! Easy to pick up,
no scope creep, injection context support, and full type safety via Angular-like
`inject()` functions (that's more like a service locator, but whatever).
The only problems are the slightly overcomplicated API - especially regarding typings - and
the use of ECMAScript Stage 3 decorators, which do not support decorating method parameters :sob:

So what's the right move? Forking the best pick and refactoring it to suite my
production needs.

### Installation

```sh
npm i @lppedd/di-wise-neo
```

```sh
pnpm add @lppedd/di-wise-neo
```

```sh
yarn add @lppedd/di-wise-neo
```

### API reference

You can find the complete API reference at [lppedd.github.io/di-wise-neo][di-wise-neo].

### Ergonomics

- Does **not** depend on other libraries.
- Does **not** use [reflect-metadata][reflect-metadata] to drive decorators.
- **Can** be used from JavaScript with function-based injection.

### Requirements

- The JS environment must support features such as `Array.at`, `Array.flat`, `WeakRef`, `WeakMap`, `Set`, `Map`.

#### Decorator-based injection

- When using decorator-based injection, `experimentalDecorators` must be enabled in your `tsconfig.json` file.

## Quickstart

```ts
//
// A couple of classes to cover the example
//

export class ExtensionContext { /* ... */ }

// Both the secret store and the contribution registrar
// require the extension context to read and set values

export class SecretStore {
// We can use function-based injection, which gives us type safety
readonly context = inject(ExtensionContext);

// Or even
// constructor(readonly context = inject(ExtensionContext)) {}

/* ... */
}

export class ContributionRegistrar {
// We can also opt to use decorator-based constructor injection
constructor(@Inject(ExtensionContext) readonly context: ExtensionContext) {}

/* ... */

// Or method injection. The @Optional decorator injects "T | undefined".
protected withSecretStore(@Optional(SecretStore) store: SecretStore | undefined): void {
if (store?.isSet("key")) {
/* ... */
}
}
}

//
// Using di-wise-neo
//

// Create a new DI container
const container = createContainer({
// Optionally override the default "Transient" registration scope.
// I prefer to use "Container" (a.k.a. Singleton) scope, but "Transient" is the better default.
defaultScope: "Container",
});

// Register our managed dependencies in the container
container.register(ExtensionContext)
.register(SecretStore)
.register(ContributionRegistrar);

// Get the contribution registrar.
// The container will create a new managed instance for us, with all dependencies injected.
const registrar = container.resolve(ContributionRegistrar);
registrar.registerCommand("my.command", () => { console.log("hey!"); });
```

## Container scopes

The [Container][source-container] supports three **scope** types that determine how and when
values are cached and reused.

### Transient

Creates a new value every time the dependency is resolved, which means values are never cached.

- A class registered via `ClassProvider` is instantiated on each resolution
- A factory function registered via `FactoryProvider` is invoked on each resolution
- A value registered via `ValueProvider` is always returned as-is

> [!NOTE]
> When a **Transient** or **Resolution**-scoped value is injected into a **Container**-scoped
> instance, it effectively inherits the lifecycle of that instance. The value will live as long
> as the containing instance, even though it is not cached by the container itself.

### Resolution

Creates and caches a single value per resolution graph.
The same value is reused during a single resolution request, but a new one is created for each request.

### Container

Creates and caches a single value per container.
If the value is not found in the current container, it is looked up in the parent container,
and so on.

It effectively behaves like a **singleton** scope but allows container-specific overrides.

## Token registration

The container allows registering tokens via _providers_. The generic usage is:

```ts
container.register(/* ... */);
```

An explicit **scope** can be specified using the third argument, when applicable.
If omitted, the default scope is **Transient**.

```ts
container.register(token, provider, { scope: "Resolution" });
```

### ClassProvider

You can register a class by passing it directly to the `register` method:

```ts
container.register(SecretStore);
```

Alternatively, use an explicit `ClassProvider` object - useful when registering
an interface or abstract type:

```ts
const IStore = createType("Store");
container.register(IStore, {
useClass: SecretStore, // class SecretStore implements Store
});
```

Upon resolving `IStore` - which represents the `Store` interface - the container
creates an instance of `SecretStore`, caching it according to the configured scope.

### FactoryProvider

A lazily computed value can be registered using a factory function:

```ts
const Env = createType("Env")
container.register(Env, {
useFactory: () => isNode() ? "Node.js" : "browser",
});
```

The factory function is invoked upon token resolution, and its result is cached
according to the configured scope.

### ValueProvider

A fixed value - always taken as-is and unaffected by scopes - can be registered using:

```ts
const PID = createType("PID");
const processId = spawnProcess();
container.register(PID, {
useValue: processId,
});
```

This is especially useful when injecting third-party values that are not created
through the DI container.

### ExistingProvider

Registers an alias to another token, allowing multiple identifiers to resolve to the same value.
Using the previous `PID` example, we can register a `TaskID` alias:

```ts
const TaskID = createType("TaskID");
container.register(TaskID, {
useExisting: PID,
});
```

The container will translate `TaskID` to `PID` before resolving the value.

## Function-based injection

The primary way to perform dependency injection in **di-wise-neo** is through
functions like `inject(T)`, `injectAll(T)`, `optional(T)`, and `optionalAll(T)`.

> [!TIP]
> Using injection functions is recommended because it preserves type safety.

### Injection context

All injection functions must be invoked inside an _injection context_, which stores
the currently active container.
The _injection context_ is available in these situations:

- Inside the `constructor` of a class instantiated by the DI container.
- In property initializers of such classes.
- Within factory functions used by `FactoryProvider`.
- Within functions passed to `Injector.runInContext`.

### `inject(Token): T`

Injects the value associated with a token, throwing an error if the token is not
registered in the container.

```ts
export class ProcessManager {
constructor(readonly rootPID /*: number */ = inject(PID)) {}

/* ... */
}
```

If `PID` cannot be resolved, a resolution error with detailed information is thrown.

### `injectAll(Token): T[]`

Injects all values associated with a token, throwing an error if the token has
never been registered in the container.

```ts
export class ExtensionContext {
readonly stores /*: Store[] */ = injectAll(IStore);

/* ... */

clearStorage(): void {
this.stores.forEach((store) => store.clear());
}
}
```

### `optional(Token): T`

Injects the value associated with a token, or `undefined` if the token is not
registered in the container.

```ts
export class ProcessManager {
constructor(readonly rootPID /*: number | undefined */ = optional(PID)) {}

/* ... */
}
```

### `optionalAll(Token): T[]`

Injects all values associated with a token or an **empty array** if the token
has never been registered in the container.

```ts
export class ExtensionContext {
// The type does not change compared to injectAll(T), but the call does not fail
readonly stores /*: Store[] */ = optionalAll(IStore);

/* ... */
}
```

## Decorator-based injection

You can also perform dependency injection using TypeScript's experimental decorators.
**di-wise-neo** supports decorating constructor and instance method parameters.

> [!NOTE]
> Property injection is **not** supported by design.

### `@Inject(Token)`

Injects the value associated with a token, throwing an error if the token is not
registered in the container.

```ts
export class ProcessManager {
constructor(@Inject(PID) readonly rootPID: number) {}

/* ... */

// The method is called immediately after instance construction
notifyListener(@Inject(ProcessListener) listener: ProcessListener): void {
listener.processStarted(this.rootPID);
}
}
```

If `PID` cannot be resolved, a resolution error with detailed information is thrown.

### `@InjectAll(Token)`

Injects all values associated with a token, throwing an error if the token has
never been registered in the container.

```ts
export class ExtensionContext {
constructor(@InjectAll(IStore) readonly stores: Store[]) {}

/* ... */

clearStorage(): void {
this.stores.forEach((store) => store.clear());
}
}
```

### `@Optional(Token)`

Injects the value associated with a token, or `undefined` if the token is not
registered in the container.

```ts
export class ProcessManager {
constructor(@Optional(PID) readonly rootPID: number | undefined) {}

/* ... */
}
```

### `@OptionalAll(Token)`

Injects all values associated with a token or an **empty array** if the token
has never been registered in the container.

```ts
export class ExtensionContext {
// The type does not change compared to @InjectAll, but construction does not fail
constructor(@OptionalAll(IStore) readonly stores: Store[]) {}

/* ... */
}
```

### Forward references

Sometimes you may need to reference a token or class declared later in the file.
Normally, attempting to do that would result in a `ReferenceError`:

> ReferenceError: Cannot access 'IStore' before initialization

We can work around this problem by using the `tokenRef` helper function:

```ts
export class ExtensionContext {
constructor(@OptionalAll(tokenRef(() => IStore)) readonly stores: Store[]) {}

/* ... */
}
```

## Behavioral decorators

The library includes four behavioral decorators that influence how classes are registered in the container.
These decorators attach metadata to the class type, which is then interpreted by the container during registration.

### `@Scoped`

Specifies a default scope for the decorated class:

```ts
@Scoped("Container")
export class ExtensionContext {
/* ... */
}
```

Applying `@Scoped("Container")` to the `ExtensionContext` class instructs the DI container
to register it with the **Container** scope by default.

This default can be overridden by explicitly providing registration options:

```ts
container.register(
ExtensionContext,
{ useClass: ExtensionContext },
{ scope: "Resolution" },
);
```

In this example, `ExtensionContext` will be registered with **Resolution** scope instead.

### `@Named`

Marks a class or injected dependency with a unique name (qualifier), allowing the container
to distinguish between multiple implementations of the same type.

```ts
@Named("persistent")
@Scoped("Container")
export class PersistentSecretStorage implements SecretStorage {
/* ... */
}

// Register the class with Type.
// The container will automatically qualify the registration with 'persistent'.
container.register(ISecretStorage, { useClass: PersistentSecretStorage });

// Inject the SecretStorage dependency by name
export class ExtensionContext {
constructor(@Inject(ISecretStorage) @Named("persistent") readonly secretStorage: SecretStorage) {}

/* ... */
}
```

The container will throw an error at registration time if the name is already taken by another registration.

### `@AutoRegister`

Enables automatic registration of the decorated class when it is resolved if it has not
been registered beforehand.

```ts
@AutoRegister()
export class ExtensionContext {
/* ... */
}

// Resolve the class without prior registration. It works!
container.resolve(ExtensionContext);
```

### `@EagerInstantiate`

Sets the default class scope to **Container** and marks the class for eager instantiation upon registration.

This causes the container to immediately create and cache the instance of the class
at registration time, instead of deferring instantiation until the first resolution.

```ts
@EagerInstantiate()
export class ExtensionContext {
/* ... */
}

// ExtensionContext is registered with Container scope,
// and an instance is immediately created and cached by the container
container.register(ExtensionContext);
```

> [!WARNING]
> Eager instantiation requires that all dependencies of the class are already registered in the container.
> If they are not, registration will fail.

## Testing support

Testing is an important part of software development, and dependency injection is meant to make it easier.
The container API exposes methods to more easily integrate with testing scenarios.

### `resetRegistry`

Removes all registrations from the container's internal registry, effectively resetting it to its initial state.
This is useful for ensuring isolation between tests.

```ts
describe("My test suite", () => {
const container = createContainer();

afterEach(() => {
container.resetRegistry();
});

/* ... */
});
```

### `dispose`

Another way to ensure isolation between tests is to completely replace the DI container after each test run.
The **di-wise-neo** container supports being _disposed_, preventing further registrations or resolutions.

```ts
describe("My test suite", () => {
let container = createContainer();

afterEach(() => {
container.dispose();
container = createContainer();
});

/* ... */
});
```

## Credits

**di-wise-neo** is a fork of [di-wise][di-wise].
All credits to the original author for focusing on a clean architecture and on code quality.

## License

[MIT license](https://github.com/lppedd/di-wise-neo/blob/main/LICENSE)

2025-present [Edoardo Luppi](https://github.com/lppedd)
2024-2025 [Xuanbo Cheng](https://github.com/exuanbo)

[cdi-weld]: https://weld.cdi-spec.org
[tsyringe]: https://github.com/microsoft/tsyringe
[Awilix]: https://github.com/jeffijoe/awilix
[InversifyJS]: https://github.com/inversify/InversifyJS
[redi]: https://github.com/wzhudev/redi
[di-wise]: https://github.com/exuanbo/di-wise
[di-wise-neo]: https://lppedd.github.io/di-wise-neo
[reflect-metadata]: https://github.com/microsoft/reflect-metadata
[esbuild-issue]: https://github.com/evanw/esbuild/issues/257
[source-container]: https://github.com/lppedd/di-wise-neo/blob/main/src/container.ts#L29