So starten Sie mehrere asynchronisierte Funktionen im Knoten JS
let [someResult, anotherResult] = await Promise.all([someCall(), anotherCall()]);
Tomer Mantzuri
let [someResult, anotherResult] = await Promise.all([someCall(), anotherCall()]);