Decorators work on Linux/Unix but not on Windows
I’m facing an issue with NestJS decorators when running in a Windows environment.
I have the following decorator:
Import nest-mqtt inside Nest.js
I want to create an MQTT conection based on Configuration module in my Nest.js app. I am using very old npm package: https://github.com/microud/nest-mqtt . I updated necessary dependencies and now I try to use it. However i am experiencing this issue:
ModuleRef not being injected in unit tests
I have a service that uses moduleRef for dynamic resolving dependencies. That works fine for me.
[NestJS][DI] ModuleRef not working on unit tests
I have a service that uses moduleRef for dynamic resolving dependencies. That works fine for me.
NestJS inject multiple values into same service
Working on NestJS app and faced situation I cannot find answer in docs.
Right way to inject dependencies in NestJS
I’m new to NestJS and also unfamiliar with DI. I’m building a simple API with NestJS. Everything is fine when each module have only 1 DB connect dependency. But when I inject a service to another service . Like this