Many performance-related issues in Node.js applications have to do with how promises are implemented. Async/await blocks the event loop when not correctly used. blocking it means that other parts of the application will suffer because they will not get executed on time and that affects the overall performance.

5m read timeFrom dev.to
Post cover image
Table of contents
So, what is the problem with async/await? You ask.Does this mean related/dependent promises should block each other?ConclusionFurther Reading:
6 Comments

Sort: