In Typescript, how can I make multiple http request in parallel and process each of the response independently?
I read posts like: https://melvingeorge.me/blog/do-multiple-fetch-requests-parallel-javascript?msclkid=27e3e64fbb6611ec99bd559527fe2a91 Resolving multiple fetch request in parallel
Both suggest using 'Promise.all' which seems to me the processing will happen only when reponsees from ALL requests come back.
My question is how can I make the request in paraell and process each of the response as they come back? Or this is not possible since JavaScript is a single threaded?
Thank you.