API with NestJS #148. Understanding the injection scopes
NestJS default behavior is singleton provider scope for classes, sharing one instance for increased performance.
Request scope can be implemented for classes like logged-in-user.service.ts to be initialized per HTTP request.