1 min readNov 25, 2019
There is time for everything. There are examples, when using async/await is going to hurt your user experience. When you are routing a Node request, for example, there are compelling cases to `then` your logic, send back the response and let the server finish handling additional logic: you may be sending out multiple notifications, generating PDFs, doing DB writes — all of which do not need to black the thread and keep the user waiting.