python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Dynamic MonoDB connection for child modules - NestJS
I'm trying to implement Multi-tenancy application which will have the collection of org details, and the org data will be stored in different databases.
Like,
When someone do the API call, I'll be ad...
rakcode
Votes: 0
Answers: 1
Using ConfigService in Unit Test - NestJS
I have a Kafka ProducerService which looks like this:
@Injectable()
export class ProducerService implements OnModuleInit, OnApplicationShutdown {
private logger = new Logger(ProducerService.name);
...
Mattia Bradascio
Votes: 0
Answers: 1
Adding an ElasticSearch connection to app.module on Nestjs
I'm trying to create a connection with ElasticSearch on my app.module.ts.
My project folder looks like:
src
|database
|- elasticsearch-database.module.ts
|- es.services.ts
|services
|- prod...
PedroSG
Votes: 0
Answers: 1
A clean way to check for query parameter in NestJS
I have a nestjs project that is mostly in RESTful structure. Everything works fine, but my concern is that some of the routes check for the presence of some query parameters to fetch data.
for instanc...
Fynix
Votes: 0
Answers: 2