Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/xserver/src/deps.ts>readableStreamFromReader

X-Server a Deno server module with middleware
Go to Latest
variable readableStreamFromReader
Deprecated
Deprecated

(will be removed after 0.169.0) Import from std/streams/readable_stream_from_reader.ts instead.

Create a ReadableStream<Uint8Array> from from a Deno.Reader.

When the pull algorithm is called on the stream, a chunk from the reader will be read. When null is returned from the reader, the stream will be closed along with the reader (if it is also a Deno.Closer).

An example converting a Deno.FsFile into a readable stream:

import { readableStreamFromReader } from "https://deno.land/std@0.224.0/streams/mod.ts";

const file = await Deno.open("./file.txt", { read: true });
const fileStream = readableStreamFromReader(file);
import { readableStreamFromReader } from "https://deno.land/x/xserver@1.3.1/src/deps.ts";