Category "nodejs-server"

How do you spread a lot of requests over time in nodejs?

I'm working on a backend that has to request data from Moralis (web3), but how can I spread the requests in time so that I don't exceed the max requests each mi

Correct way to auto create aws api gateways to existing apis

I am building 2 separate nodejs microservices (using express inside each etc). What is the correct way to properly automate creation of AWS Api gateway's so tha

how to restrict double extension while uploading file to server

fileName = inputParam.file_name.split('.')[0].toLowerCase().replace(/ /g, '') + '' + Date.now() + "." + (fileData.file.name.split('.')[1] || inputParam.fi

ECONNRESET error in Nodejs while calling API request

I'm using NodeJS in my application, I'm trying to call API service to get the token from the server. While I'm making any request from the NodeJS file I'm getti