Github: run-parallel (javascript)
Run an array of functions in parallel
install
npm install run-parallel
usage
parallel(tasks, [callback])
Run the
tasks
array of functions in parallel, without waiting until the previous function has completed. If any of the functions pass an error to its callback, the maincallback
is immediately called with the value of the error. Once thetasks
have completed, the results are passed to the finalcallback
as an arr