Medium
Consider the following code:
@Module({
providers: [
{
provide: 'DATABASE_SERVICE',
useFactory: (configService: ConfigService) => {
return new DatabaseService(configService.get('DATABASE_URL'));
}
}
]
})
export class AppModule {}
What's wrong with the provider declaration?
Author: AxelStatus: PublishedQuestion passed 33 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!
3
Nest module lifecycle methods execution order3
What is the main use of the `OnModuleInit` interface in Nest.js?5
How to define a service or component that can be injected in Nest.js7
How to make an `ExceptionFilter` global so that it applies to your entire application in NestJS7
What is the main responsibility of a pipe in Nest.js?4
Which decorator is used to associate a Guard with a route or controller in Nest?10
How to declare a class as a controller in Nest.js