Modules in Nest.JS #53478
Answered
by
kottinov
muchetos
asked this question in
Programming Help
Modules in Nest.JS
#53478
-
BodyWhat would be the best way to organize and structure the Nest modules effectively? I don't still don't get it. Guidelines
|
Beta Was this translation helpful? Give feedback.
Answered by
kottinov
Apr 22, 2023
Replies: 1 comment
-
|
To organize our modules effectively, you can group them by domain, use feature and shared modules, use providers for dependency injection, and separate concerns by using controllers and services. By following these tips, you can make our code more maintainable and modular :) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
muchetos
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To organize our modules effectively, you can group them by domain, use feature and shared modules, use providers for dependency injection, and separate concerns by using controllers and services. By following these tips, you can make our code more maintainable and modular :)