470,602 questions
- Bountied 1
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
12
views
how to connect web application in my laptop to a raspberry pi through MQTT? [closed]
I have a web application to a restaurant. There is a reservation part. raspberry pi working as a central robot and it contains the reserved and non reserved tables. when customer select no reservation ...
0
votes
0
answers
11
views
How to solve electron-prebuilt-compile build and install error
The project is electron+typescript, I enter two commands npm run build and npm start, it hints need install electron-prebuilt-compile package, as shown image.
https://i.sstatic.net/fyvYMR6t.png
The ...
0
votes
1
answer
24
views
sqlite timezone change UTC to asia/kolkata
I am creating a crud application using Node JS, Express JS & SQLite database. For every database insertion i am using a column 'created_at' to insert current timestamp. But according to my ...
1
vote
1
answer
36
views
How to decrease memory use during vite/pnpm build?
I am running a build for a large project using pnpm and Vite, but it keeps failing with out of memory errors.
I have already tried increasing the Node memory limit significantly (to ~12GB), but it ...
-3
votes
0
answers
48
views
Error: Failed to load external module mongodb-438b504308ffa4be: Error: Cannot find module 'mongodb-438b504308ffa4be' Require stack: [closed]
48790b4b ERROR ⨯ Error: Failed to load external module mongodb-438b504308ffa4be: Error: Cannot find module 'mongodb-438b504308ffa4be'
Require stack:
\- /var/task/.next/server/chunks/\[root-of-...
Advice
2
votes
1
replies
42
views
Custom eslint rule ideas
I planned to write a custom eslint rule for eslint 9, focusing on performance optimizations and suggestions.
the custom i've already built
no-sequential-await
can anyone suggest me some legit ideas, ...
0
votes
1
answer
54
views
Error with primary key when inserting into Access with node-adodb
I have nodejs 25.0.0 and node-adodb. I am trying to insert into a MS Access database in a table that has a primary key (ID) that is set to auto-increment and has "required" set to true. I ...
0
votes
0
answers
38
views
Fly.io backend does not see /uploads
My backend uses multer to save to some files from the frontend on a local disk directory and then uploads them to S3. After that, it removes all the images from the directory.
This works in ...
-4
votes
0
answers
65
views
Unable to establish SSL connection to Clerk authentication [closed]
Unable to establish SSL connection to Clerk authentication
Problem Description
I'm trying to use Clerk authentication with Next.js and Convex, but I'm getting a "Connection reset by peer" ...
0
votes
0
answers
52
views
How to install yarn with mise version manager
I want to install yarn on my machine globally or by project basis, I installed node js with this command ` mise use --global [email protected]` , but am getting this error continuously when i run mise ...
1
vote
1
answer
59
views
Is it possible in Node to wait for a success/error from a net.socket operation before sending an Express response?
I apologize if this is impossible, unadvisable, or answered elsewhere, but I have spent a couple days trying to find an answer as well as changing/testing the code every way I could think of without ...
-1
votes
1
answer
54
views
How to see JSON Schema created with zod?
I am trying to log a JSON Schema created with zod. I tried converting to JSON Schema with zod-to-json-schema in Node.js. Here is what I see from console.log(jsonSchema):
{ '$schema': 'http://json-...
-3
votes
0
answers
43
views
Node.js Stripe Integration flow [closed]
I am just starting with Stripe integration. I want to create a custom Stripe flow where a customer can have more than one card, save the card details, and choose a plan. The plan should be a monthly/...
0
votes
1
answer
39
views
fabric.js canvas.loadFromJSON hangs indefinitely on one Windows machine but works on another (Node.js + node-canvas)
TL;DR
I’m using fabric.js + node-canvas to export a very large canvas (×ばつ108000) from a FabricJS JSON.
On one Windows machine,
await canvas.loadFromJSON(fabricJSON) hangs forever:
no error
no CPU ...
3
votes
1
answer
40
views
How do I delete all the versions of the S3 object using AWS Node.js SDK?
I have versioning enabled bucket and need to delete multiple objects and their versions. I am referring to this guide which lacks Node.js example. This is my current code which only works for non-...