Promise.allSettled를 이용해서 안전하게 Promise함수의 병렬 처리를 해보려고 헀었는데 노드 버전을 14로 낮추기만 해도 안되는 이슈가 있었다. nvm에서 아무래도 노드 16을 삭제 해야할 듯 하다.. :( 찾아보니 Promise.allSettled 는 Node버전 14.9 이상 부터 사용이 가능하다고 한다. https://stackoverflow.com/questions/57576249/execute-batch-of-promise-with-promise-allsettled Execute batch of promise with Promise.allSettled() With node v10.15.1 I try to use Promise.allSettled() to executes batch..