3,155 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
16
views
NEST Network Emulation: httperf parser fails with AttributeError: 'NoneType' object has no attribute 'group
markdown
I'm trying to run HTTP emulation experiments using NEST (Network Emulation and Simulation Testbed) but encountering parser errors with httperf output due to regex pattern mismatches.
Problem
...
0
votes
0
answers
158
views
I got an error with Nest js and Prisma ORM
I’m setting up Prisma with NestJS.
I created a PrismaModule and a PrismaService file. I want to add my own middleware for soft delete, but I’m facing an error.
generator client {
provider = "...
0
votes
0
answers
76
views
Facebook access token giving code 190 and subcode 492 error
I am creating a facebook post scheduler. I have created an api in next js to connect facebook page and save the access token and refresh token.
initially when I save the access token and call the ...
0
votes
0
answers
36
views
How to return the geo distance when NOT sorting with _geo_distance in c# NEST code
I have json data with latitude and longitude in separate fields instead of having a location of type GeoPoint.
I implemented filtering in ElasticSearch based on geo_distance by mapping this location ...
1
vote
2
answers
240
views
Dockerized NestJS + Prisma backend
I am building a full‐stack application using Docker Compose, with separate services for frontend (Next.js), backend (NestJS + Prisma) and a PostgreSQL database. I would like to do all development—...
0
votes
0
answers
79
views
How to Decode a Fastify Secure-Session in a WebSocket Gateway
I used @fastify/secure-session to authenticate users using sessions and cookies. The module automatically handles retrieving the user session from the cookies sent with each HTTP request and decodes ...
0
votes
0
answers
92
views
Do I need to store the timezone in the database when defining a column with @CreateDateColumn() in NestJS with TypeORM?
I'm using the @CreateDateColumn() decorator like this:
@CreateDateColumn()
createdAt: Date;
In this case, the value is stored as timestamp without time zone, which means it's in UTC without any ...
0
votes
0
answers
85
views
Nest.js. Swagger. How to split swagger docs into 2 documents: for clients and admins
I'm using NestJS (v11) and @nestjs/swagger (v11.0.3).
I have a modular app structure where some controllers are intended for public clients (mobile app, frontend) and others are intended for admin ...
0
votes
0
answers
21
views
ElasticSearch query via NEST returns 0 documents, while identical query via REST does return documents
For a .NET application that calls ElasticSearch via NEST, I found the odd issue that the query via NEST always returns 0 documents, while - if I extract the underlying query and call ES directly with ...
0
votes
0
answers
47
views
NESTJS ERROR [ExceptionsHandler] column "nan" does not exis
I am developing my own video hosting, but when dynamically loading videos, I encountered an error on the server:
TypeError: response is undefined on the client
[Nest] 10692 - 03/29/2025, 8:41:36 AM
...
0
votes
0
answers
205
views
Trouble with Postiz when try to login
I have a problem with postiz on server. This is my url config:
MAIN_URL: "http://*public-host*:5000"
FRONTEND_URL: "http://*public-host*:5000"
NEXT_PUBLIC_BACKEND_URL: "...
0
votes
0
answers
12
views
i am getting the error twise in my swgger api responce why i am getting it twise?
{
"response": {
"message": "Access denied: Only ADMIN can Access this Route.",
"error": "Forbidden",
"statusCode": 403
},
"status":...
0
votes
1
answer
134
views
Nest.js Dynamic Modules and Injectable Singleton
Introduction
Have a dynamic module, which returns module with connection providers.
@Module({})
export class ConnectionModule {
static register(cnf: ConnectionsList) {
const cons = [];
if (...
0
votes
0
answers
27
views
Why my cookies aren't stored in cookie storage in Google Chrome (or anywhere)
I have deployed my front-end on Vercel and back-end on railway. Localy it works fine, but in production I have a problem with non-storing cookies.
Here is my axios config for front-end (Next.js):
...
0
votes
0
answers
132
views
How to use pg Pool in node js nest js with typeorm
I already have a Node.js application using NestJS with TypeORM configured. Now, I want to implement a PostgreSQL connection pool using pg Pool for better database connection handling. Is it possible ...