There's any way to debug a UnhandledPromiseRejectWarning on a NodeJS API built with Express Generator?

273 Views Asked by At

In this scenario when I run the local API I receive a warning with a

UnhandledPromiseRejectionWarning: Error: write EPIPE at WriteWrap.afterWrite [as oncomplete] (net.js:835:14) (node:7028) > UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)

Especifing that might be a JS promise without a catch() callback written correctly. I checked the whole API (Controllers, Models, even middlewares) and all the functions and promises return correctly. All the mongoDB deamons are working well but the API only responds to 404 statuses.

There's any way to debug the API without include any TDD or tests units?

Thanks.

0

There are 0 best solutions below