in the documentation about Feature Modules
there is CatsModule that imported to the root AppModule, what does it mean? Will AppModule have access to all providers,controllers and imports defined in the imported module? (and all these controllers, providers and imports of the imported module will be provided to AppModule as new instance of all them, because all module is Shared modules by default)
so in order to share a instance of controller/service between another module you need to include it into exports array, right? but importing module will still have all providers/controllers/servicies as new instances, except ones that included into exports array, them importing module will have like the same instance
Nest is a framework for building efficient, scalable Node.js server-side applications. It uses progressive JavaScript, is built with TypeScript and combines elements of OOP (Object Oriented Programming), FP (Functional Programming), and FRP (Functional Reactive Programming).