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

nestjs-multi-provider

v0.3.2

Published

This package patches NestJS with the multi provider pattern.

Downloads

162

Readme

NestJS patch for multi provider pattern

This package patches the Nest.js Module decorator so that you can somewhat straightforwardly use the multi-provider pattern. This package lets you specify the multi flag to providers. You can then collect these providers into an array using the collect function in the imports attribute of a target module, and inject the collected array of provided values anywhere in the target module.

Installation

npm install nestjs-multi-provider

Usage

A full example is available here.

On the first line of your root module file (most likely src/app.module.ts), import the package to activate the patch:

import 'nestjs-multi-provider';

Note: This package monkey-patches the Module decorator, if for some reason you can't, see the failsafe method.

1. Provide

Simply use any of the provider patterns NestJS supports, and add the multi property. You can do this from any module, any amount of times. All the providers will ultimately be available under the same token as an array of provided values.

@Module({
    providers: [
        {provide: SOME_TOKEN, useClass: SomeService, multi: true},
        {provide: SOME_TOKEN, useClass: SomeServiceWithDeps, multi: true, standalone: false},
    ]
})

Important: If your provider has dependencies, you must set standalone to false.

2. Collect

To access all your providers, use the collect function:

@Module({
    imports: [collect(SOME_TOKEN)]
})
export class CollectingModule {}

3. Inject

You can now inject your array of providers anywhere inside of CollectingModule:

export class SomeServiceInCollectingModule {
    constructor(@Inject(SOME_TOKEN) collection: any[]) {
        console.log("Collected:", collection)
        // This will print `Collected: [SomeService {}, SomeServiceWithDeps {}]`
    }
}

Using the failsafe decorator

Instead of using the patched Module decorator, you can also decorate any modules that provide multi-providers with the ModuleWithMulti decorator:

import { ModuleWithMulti } from "nestjs-multi-provider";

@ModuleWithMulti({
    providers: [{provide: "something", useValue: 1, multi: true}]
})
export class MyModule {}

During testing

I have noticed during testing that the monkey patch doesn't always function because certain statements may be hoisted above the patch. You can overcome this by creating a statement that itself will be hoisted. For example, for Jest:

import { ModuleWithMulti } from "nestjs-multi-provider";

jest.mock('@nestjs/common', () => {
  const nestjsCommon = jest.requireActual('@nestjs/common');
  return {
    ...nestjsCommon,
    Module: ModuleWithMulti,
  };
});

Important notes

  • Your providers are not available unless you use collect.
  • collect creates a DynamicModule and therefor must be placed in the imports property.
  • Your providers are by default considered standalone (not having any dependencies), and are not actually provided by the module they are declared in, but by the collecting DynamicModule. This is done to avoid creating needless dependencies between modules.
  • If your provider has dependencies, set standalone to false to have access to the declaring module's providers. Doing this will result in a forwardRef of the declaring module by the collecting module.
  • Multi providers are not supported in DynamicModules.