GithubHelp home page GithubHelp logo

Singletons about nest HOT 9 CLOSED

nestjs avatar nestjs commented on April 25, 2024
Singletons

from nest.

Comments (9)

kamilmysliwiec avatar kamilmysliwiec commented on April 25, 2024 4

Hi @zachgrayio,

All components are singletons across the module. If you want to have a singleton across entire application, you can use something like shared module.

@JulianBiermann - same here, you do not have to use a factory.

from nest.

totalard avatar totalard commented on April 25, 2024 4

cant access the resource located in Gitbook.com.. Kindly Fix, or post the answer in the github issue. or any link please

from nest.

malavshah9 avatar malavshah9 commented on April 25, 2024 3

cant access the resource located in Gitbook.com.. Kindly Fix, or post the answer in the github issue. or any link please

same here

from nest.

kamilmysliwiec avatar kamilmysliwiec commented on April 25, 2024 1

@artaommahe idea was changed since last update. Components are still singletons across the module, but modules are not singletons across the entire application. It means that you can easily reuse modules in different parts of application and - using hierarchical injector powers - provide them different context. This solution helps with e.g. CQRS module and should help with a lot of 3rd party modules, which will be created in the future.

However, you can still share each module using @Shared() decorator. Also - it is possible to share one module between 2-3..* modules in chosen namespace, e.g. @Shared('namespace'). If you want to share 3rd party module, just use Shared()(ModuleName)`.

About your example - why you want to place UserService in SharedModule? UserService is a part of UserModule context, so it should be located in the UserModule. If UserService has to be used in other modules, just export it and import UserModule. If UserService should be available and also - has to be a singleton - just mark module as a @Shared() and you will have single instance across entire application.

from nest.

JulianBiermann avatar JulianBiermann commented on April 25, 2024

Currently you can use the factory injection to create singleton objects.

@Module({
  components: [
    SingletonClass,
    {
      provide: 'SingletonClass',
      useFactory: (singletonClass: SingletonClass) => {
        return singletonClass.getInstance();
      },
    }
  ],
})
export class ModelsModule {
}

from nest.

artaommahe avatar artaommahe commented on April 25, 2024

@kamilmysliwiec look at image from your link with shared modules, if UserService from User module will be used in other modules than it should be in shared module (whats wrong cause it's User module related thing) or modules structure should be very complex and non-obvious.
What is use-case for making services only module-scoped singletons and not application wide? As i remember angular team moved from module to app scoped services. IMHO app singletons is more common use-case.

from nest.

artaommahe avatar artaommahe commented on April 25, 2024

If UserService has to be used in other modules, just export it and import UserModule

cause it can have storage (memory storage with users e.x.) and so this service should be same for all consumers

Missed that @Shared releases, thx

from nest.

kamilmysliwiec avatar kamilmysliwiec commented on April 25, 2024

@artaommahe, it is my mistake - documentation should be updated as soon as possible :)

from nest.

lock avatar lock commented on April 25, 2024

This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.

from nest.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.