Node.js — Run Async Functions/Promises in Parallel
With the release of Node.js v8, async functions became an integral component. Async functions provide a simpler API around promises by removing (most) of the callback-y code. The combination of async/await and promises is powerful, but you have to be careful not going too sequential. This tutorial shows …
Continue Reading