Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,15 @@ deno run --allow-read --allow-write --allow-net --allow-env --allow-ffi minimal.

- [Online Documentation](https://webui.me/docs/2.5/#/)

## Upstream Issue Summary (denoland/deno#31890)

- Deno previously restricted TTY streams to file descriptors 0-2, which caused
Node compatibility crashes when packages created TTY streams on other fds.
- The fix adds an op to open TTY resources from any valid terminal fd by safely
duplicating the descriptor and validating it is a TTY.
- A JavaScript TTYStream wrapper now handles arbitrary fds, while ReadStream and
WriteStream keep the 0-2 fast paths for stdin/stdout/stderr.

## CppCon 2019 Presentation

[Borislav Stanimirov](https://ibob.bg/) explained at
Expand Down