12,666 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
8
views
Daily quota exceeded for metrics after migrating to open telemetry
I'm working on a Node app, based in NestJS, hosted in an Azure AppService. I've just finalised migration from the legacy applicationinsights package to @azure/monitor-opentelemetry. After deploying to ...
1
vote
0
answers
39
views
typeorm cache automatically adds pagination suffix
In a nestjs application we have just started implementing typeorm db layer cache
as per docs here - https://orkhan.gitbook.io/typeorm/docs/docs/query-builder/6-caching
this is the only instance where ...
0
votes
0
answers
15
views
Nestjs @prisma/client did not initialize yet. Please run "prisma generate" and try to import it again
I am using pnpm [email protected] and Prisma 6.19.0 for a backend application. When I add the Prisma service, I get the error
Nest] 46276 - 17/11/2025, 12:45:49 ERROR [ExceptionHandler] Error: @prisma/...
0
votes
0
answers
41
views
Performance issues with generating video thumbnail and overlaying video on video
I'm working on a video processing feature in my application where user upload a video with that flow:
Call my API for uploading a video
Generate a video thumbnail
Create an overlay video on top video ...
0
votes
1
answer
78
views
Prisma CLI Error: "Missing required environment variable: DATABASE_URL" in NestJS Project (Even Though .env Is Set)
I'm trying to use Prisma in my NestJS project. Prisma initializes correctly, but whenever I run any Prisma CLI command (e.g., npx prisma, npx prisma migrate dev, etc.), I get this error:
Failed to ...
Advice
0
votes
1
replies
33
views
Where should I add dependencies in a Nest.js app with multiple Nx libraries?
I created a new Nx workspace with the Nest.js template. It generated a package.json in both the workspace root and the project root of the Nest.js app, with duplicated dependencies (@nestjs/common, @...
Best practices
0
votes
2
replies
38
views
How should I structure NestJS services when one endpoint needs to update multiple entities (e.g., InvestorProfile and TaxProfile)?
I’m working on a NestJS + TypeORM backend and ran into an architectural question as my codebase evolved.
Initially, I had a simple setup:
InvestorProfileController handles PATCH /investor-profile
...
1
vote
0
answers
52
views
Apple Pay v2 (signedTransactionInfo) : how to verify new token format and migrate from legacy EC_v1?
I’m updating a legacy application that used Apple Pay v1 token format, and in my new revamped version I’m now receiving the newer Apple Pay v2 format.
The old (v1) payload looked like this:
{
"...
2
votes
1
answer
74
views
How to combine diacritics-insensitive, case-insensitive and partial search in MongoDB?
I'm trying to implement a robust search function in my NestJS/Mongoose application that can handle partial matches while being case-insensitive and diacritics-insensitive (ignoring accents).
My ...
1
vote
0
answers
44
views
TypeORM @CreateDateColumn() returns wrong time compared to PostgreSQL
I’m using TypeORM with PostgreSQL. My entity has:
@Entity()
export class AuditLog extends BaseEntity {
@PrimaryGeneratedColumn()
id: number;
@CreateDateColumn()
date_action: Date;
}
When I ...
0
votes
1
answer
226
views
Cannot find module 'generated/prisma' or its corresponding type declarations
I am following the NestJs Prisma docs. I followed every step but I keep getting this error:
Cannot find module 'generated/prisma' or its corresponding type declarations.ts(2307) in this line: import { ...
0
votes
1
answer
52
views
Getting Meta API error code 138013 when sending a call permission template to a user
I'm working with the Meta (WhatsApp Business Cloud API) and I'm trying to send a template message that asks for call permission from the user.
However, I'm getting the following error:
{
"...
0
votes
1
answer
48
views
voiceStateUpdate oldState Channel ID always null
I would like to add a join-to-create function to my Discord bot, whereby a temporary channel is created when a user enters a specific channel. As soon as the user leaves the channel, the temp channel ...
0
votes
0
answers
103
views
NestJS hot reload not working inside Docker container
I'm running a NestJS application inside a Docker container, but the hot reload doesn't work.
When I edit any .ts file on my host machine, the NestJS server doesn't restart automatically.
I have to ...
0
votes
0
answers
59
views
500 "Internal Server Error" when using TCP communication between NestJS microservices (Turborepo / Monorepo)
I’m building a monorepo using Turborepo and NestJS, following a microservices architecture with TCP communication between services.
Here’s my folder structure:
apps/
├── api-gateway/
│ ├── src/
...