como lançar várias funções assíncronas no nó js
let [someResult, anotherResult] = await Promise.all([someCall(), anotherCall()]);
Tomer Mantzuri
let [someResult, anotherResult] = await Promise.all([someCall(), anotherCall()]);