--- title: "@std/io" description: "The utilities for advanced I/O operations using Reader and Writer interfaces." jsr: jsr:@std/io pkg: io version: 0.225.3 generated: true stability: unstable --- :::info Unstable This @std package is experimental and its API may change without a major version bump. ::: ## Overview

Utilities for working with Deno's readers, writers, and web streams.

Reader and Writer interfaces are deprecated in Deno, and so many of these utilities are also deprecated. Consider using web streams instead.

```js import { toReadableStream, toWritableStream } from "@std/io"; await toReadableStream(Deno.stdin) .pipeTo(toWritableStream(Deno.stdout)); ``` ### Add to your project ```sh deno add jsr:@std/io ``` See all symbols in @std/io on