I want to iterate over a large array such that it won't hang the browser, so I want each iteration to be async.
Both BlueBird.mapSeries(arr, (e) => console.log(e));
and BlueBird.each(arr, (e) => console.log(e));
are blocking so nothing happens until they finish.
Is BlueBird even the right framework for this? Is there another framework for this?