I have a fairly big project in node.js version 7. I am planning to switch to node 8.9 LTS and replace Promise callbacks
with async await
.
The project demands high performance machines and there are lots of high memory consuming operations. So the question is, will using `async await drop the project's performance ?
I do not have enough time to actually upgrade node and promises to async await and compare the refactored code with the previous version of the project. So any information about performance drops or rises while switching from promise to async await will be helpful