--- title: "@std/streams" description: "Utilities for working with the Web Streams API" jsr: jsr:@std/streams pkg: streams version: 1.0.17 generated: true stability: stable --- ## Overview
Utilities for working with the Streams API.
Includes buffering and conversion.
```js import { toText } from "@std/streams"; import { assertEquals } from "@std/assert"; const stream = ReadableStream.from(["Hello, world!"]); const text = await toText(stream); assertEquals(text, "Hello, world!"); ``` ### Add to your project ```sh deno add jsr:@std/streams ``` See all symbols in @std/streams on