Skip to content
Advertisement

How to use streams in Deno?

I am very confused on Deno documentation. It has ReadableStream and WritableStream API, but it doesn’t have a documentation to use it.

I want to read from ReadableStream and write to WritableStream, how can I do that in Deno?

Advertisement

Answer

I want to read from ReadableStream and write to WritableStream, how can I do that in Deno?

Here’s a basic TypeScript example demonstrating manual use of the readable and writable parts of a TextEncoderStream (which is a subtype of TransformStream) with verbose console logging:

so-73087438.ts:

JavaScript
JavaScript

Covering the entirety of the API for WHATWG Streams is out of scope for a Stack Overflow answer. The following links will answer any question you could ask about these streams:

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement