You should investigate about inefficient code.
Possible cause: 1. Synchronous operations such as fs.readFileSync or JSON.parse for large payloads, block the event loop and delay responses. 2. Complex computation performed on the main thread instead of offloading to a worker thread.