All Questions
470,920 questions
Tooling
0 votes
4 replies
24 views
Vectorization PNG image with precise color number
I have a task to convert user PNG image to SVG with maximum possible color number coming from user setting (e.g. 8). It means that i should make initially image created from 8 colors and then convert ...
0 votes
0 answers
27 views
Firebase Gen 2 Cloud Function (Node.js) Fails with PERMISSION_DENIED on Secret Manager Access despite Correct IAM
I am running a Firebase Gen 2 (Node.js) Cloud Function and attempting to access a secret from Secret Manager. Despite confirming all recommended IAM roles, the function execution fails with a ...
-2 votes
1 answer
38 views
HTTP Put Request Not Updating But I Still Get A 200 Status Code
Whenever I try to update an object from the genres array using the code below, nothing happens. I get a 200 status code but the object remains the same with no updated value. where could I be going ...
0 votes
0 answers
26 views
App Store Connect API(Nest Js): Subscription created but status shows "Missing Metadata"
I'm automating iOS subscription setup using the App Store Connect API(Nest Js). All steps (group, subscription, localization, screenshot upload, pricing) complete successfully. However, in App Store ...
-1 votes
0 answers
30 views
Geofencing logic is Optimized or not for 1000 length gps position data or something 2000 geofencing lat log center?
I am receiving position data from a GPS device and fetching geofence latitude-longitude coordinates from my database. I also check which geofence is linked to which child and get the parents’ FCM ...
Advice
0 votes
1 replies
29 views
Deploying an express.js package
I am creating a web application using express.js. I have been following a course by Angela Wu, and one of the chapters involves a templating tool called 'Express' which is built on node.js. Following ...
2 votes
0 answers
34 views
Weird OpenAI streaming bug: concurrent JS streams randomly mix chunks across responses
I’m hitting a super weird issue with OpenAI’s streaming API and I’m lowkey losing my mind here so if anyone ran into this before pls tell me wtf is going on because I can’t tell anymore if it’s me or ...
-1 votes
0 answers
30 views
How do I fix my Windows installer, I see an error message relating to my Windows installer every time I try to install Node.js [closed]
I keep seeing this error any time I try to install Node.js in Windows, I have tried steps to fix my Windows installer, so far no luck. I can't use resources of Node.js like npm without installing it. ...
-2 votes
0 answers
43 views
synapse using docker i have faced this issue [closed]
2025-11-26T15:46:29.478Z DBG Checking connection to homeserver 2025-11-26T15:46:29.479Z INF **Starting HTTP listener** address=0.0.0.0:29318 2025-11-26T15:46:29.488Z DBG Request completed duration=8....
0 votes
0 answers
52 views
Vercel build error: “Cannot find module '../lightningcss.linux-x64-gnu.node'” when building (Vite + Tailwind + React) project [closed]
I’m trying to deploy my personal website to Vercel using Vite + React + Tailwind CSS. The project builds and runs fine locally (npm run build works without errors), but the Vercel build fails with the ...
0 votes
0 answers
45 views
Node throws a TypeError: Cannot destructure property of 'email' as it is undefined [closed]
TypeError: Cannot destructure property of 'email' of 'req.body' as it is undefined const authUser = asynchandler(a sync (req, res) => { const { email, password} = req.body; const user = await ...
2 votes
1 answer
143 views
Prisma 7.0.1 : TypeError: Cannot read properties of undefined (reading '__internal')
I was using Prisma 6, and after upgrading to Prisma 7 I had to apply some changes to my schema.prisma. These changes include modifying the schema.prisma file and adding a new prisma.config.ts file. My ...
1 vote
0 answers
33 views
Prisma inside Docker container cannot connect to Postgres on host machine (Can't reach database server at "123:5432"), but psql works inside container
I’m deploying a Node.js + Prisma backend using Docker on my VPS. PostgreSQL is NOT in Docker — it runs directly on the VPS host (Ubuntu). My backend is running inside Docker using docker compose. ...
1 vote
0 answers
31 views
Getting Firebase Auth custom claims in SSR application server-side
I want to get the custom claims for a user in a react-router app on the loader/action that run on the server. To do that, I am calling the User's method getIdTokenResult(false): const authIdToken = ...
-1 votes
0 answers
26 views
Mondial Relay SOAP API "Invalid XML" error with Unexpected close tag despite correct XML in Node/React
I am integrating Mondial Relay’s SOAP API in a Node.js application using the soap npm package. I am trying to create a shipment with the WSI2_CreationExpedition method and then generate the shipping ...