File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -86,6 +86,11 @@ characters. <kbd>Ctrl</kbd>+<kbd>C</kbd> will no longer cause a `SIGINT` when
8686in this mode. This mode does not affect terminal output processing, such as
8787newline translation on Unix terminals.
8888
89+ On Windows, ` setRawMode() ` requires write permission to the console input
90+ buffer. When opening ` "\\\\.\\CONIN$" ` with the [ ` fs.open() ` ] [ ] family of APIs
91+ (for passing into ` new tty.ReadStream() ` ), be sure to use a read/write flag
92+ such as ` 'r+' ` .
93+
8994## Class: ` tty.WriteStream `
9095
9196<!-- YAML
@@ -342,6 +347,7 @@ The `tty.isatty()` method returns `true` if the given `fd` is associated with
342347a TTY and ` false ` if it is not, including whenever ` fd ` is not a non-negative
343348integer.
344349
350+ [ `fs.open()` ] : fs.md#fsopenpath-flags-mode-callback
345351[ `net.Socket` constructor ] : net.md#new-netsocketoptions
346352[ `process.stderr` ] : process.md#processstderr
347353[ `process.stdin` ] : process.md#processstdin
You can’t perform that action at this time.
0 commit comments