nestjs-solid
nestjs-solid copied to clipboard
Nest.js & Typescript SOLID Principles for writing clean-code
Results
1
nestjs-solid issues
Sort by
recently updated
recently updated
newest added
For example in the orders controller https://github.com/ipenywis/nestjs-solid/blob/main/src/modules/SRP/orders/orders.controller.ts#L27C5-L27C67 ` await this.emailsService.sendOrderEmail(createdOrder.orderId); ` Orders use email service, the SR principle is violated, now email service can be changed for two reasons -...