Cómo lanzar varias funciones de async en el nodo JS
let [someResult, anotherResult] = await Promise.all([someCall(), anotherCall()]);
Tomer Mantzuri
let [someResult, anotherResult] = await Promise.all([someCall(), anotherCall()]);