deno/ext/io
Yoshiya Hinosawa 8178f758bc
fix(ext/node): support process.stdin.unref() (#22865)
This PR adds private `[REF]()` and `[UNREF]()` methods to Stdin class,
and call them from Node.js polyfill layer (`TTY` class). This enables
`process.stdin.unref()` and `process.stdin.ref()` for the case when
stdin is terminal.

closes #21796
2024-04-27 20:25:18 +09:00
..
12_io.js fix(ext/node): support process.stdin.unref() (#22865) 2024-04-27 20:25:18 +09:00
Cargo.toml 1.43.0 (#23549) 2024-04-25 15:14:26 +05:30
fs.rs feat(runtime): Allow embedders to perform additional access checks on file open (#23208) 2024-04-19 18:12:03 -06:00
lib.rs chore: upgrade deno_core to 0.274.0 (#23344) 2024-04-12 21:45:38 +02:00
pipe.rs refactor(cli): clean up test runner channels (#22422) 2024-02-23 11:11:15 -07:00
README.md refactor(runtime): factor out deno_io extension crate (#18001) 2023-03-05 00:39:48 +00:00
winpipe.rs fix(ext/io): Fix NUL termination error in windows named pipes (#23379) 2024-04-15 14:10:09 -06:00

deno_io

This crate provides IO primitives for other Deno extensions, this includes stdio streams and abstraction over File System files.