concurrent-transform-stream

This is a modified version of the standard transform stream, made to execute transformations concurrently. It is useful if you are doing transformations on a stream that are not only asynchronous, but can be run in parallel (like network requests or calls to a sub-process).

Usage no npm install needed!

<script type="module">
  import concurrentTransformStream from 'https://cdn.skypack.dev/concurrent-transform-stream';
</script>

README

Concurrent Transform Stream

This is a modified version of the standard transform stream, made to execute transformations concurrently. It is useful if you are doing transformations on a stream that are not only asynchronous, but can be run in parallel (like network requests or calls to a sub-process).