Repository
Current version released
11 months ago
Versions
read
Read all text from stdin.
import read from "https://deno.land/x/read/mod.ts";
const input = await read();
Or read chunks individually.
import { readChunks } from "https://deno.land/x/read/mod.ts";
for await (const chunk of readChunks()) {
// ...
}