Node.js streams

2020-05-21

TIL that Node.js streams could be extremely useful when you need to process a paginated API and batch process, or just consume it in a functional fashion.

await pipeline(
  fetchRecords,
  JSONParser,
  changeDateFormat,
  queueBatch(queueUrl)
)

Links