/usr/share/doc/nodejs/html/api
{ "type": "module", "source": "doc/api/tty.md", "modules": [ { "textRaw": "TTY", "name": "tty", "introduced_in": "v0.10.0", "stability": 2, "stabilityText": "Stable", "desc": "<p><strong>Source Code:</strong> <a href=\"https://github.com/nodejs/node/blob/v16.20.2/lib/tty.js\">lib/tty.js</a></p>\n<p>The <code>node:tty</code> module provides the <code>tty.ReadStream</code> and <code>tty.WriteStream</code>\nclasses. In most cases, it will not be necessary or possible to use this module\ndirectly. However, it can be accessed using:</p>\n<pre><code class=\"language-js\">const tty = require('node:tty');\n</code></pre>\n<p>When Node.js detects that it is being run with a text terminal (\"TTY\")\nattached, <a href=\"process.html#processstdin\"><code>process.stdin</code></a> will, by default, be initialized as an instance of\n<code>tty.ReadStream</code> and both <a href=\"process.html#processstdout\"><code>process.stdout</code></a> and <a href=\"process.html#processstderr\"><code>process.stderr</code></a> will, by\ndefault, be instances of <code>tty.WriteStream</code>. The preferred method of determining\nwhether Node.js is being run within a TTY context is to check that the value of\nthe <code>process.stdout.isTTY</code> property is <code>true</code>:</p>\n<pre><code class=\"language-console\">$ node -p -e \"Boolean(process.stdout.isTTY)\"\ntrue\n$ node -p -e \"Boolean(process.stdout.isTTY)\" | cat\nfalse\n</code></pre>\n<p>In most cases, there should be little to no reason for an application to\nmanually create instances of the <code>tty.ReadStream</code> and <code>tty.WriteStream</code>\nclasses.</p>", "classes": [ { "textRaw": "Class: `tty.ReadStream`", "type": "class", "name": "tty.ReadStream", "meta": { "added": [ "v0.5.8" ], "changes": [] }, "desc": "<ul>\n<li>Extends: <a href=\"net.html#class-netsocket\" class=\"type\"><net.Socket></a></li>\n</ul>\n<p>Represents the readable side of a TTY. In normal circumstances\n<a href=\"process.html#processstdin\"><code>process.stdin</code></a> will be the only <code>tty.ReadStream</code> instance in a Node.js\nprocess and there should be no reason to create additional instances.</p>", "properties": [ { "textRaw": "`readStream.isRaw`", "name": "isRaw", "meta": { "added": [ "v0.7.7" ], "changes": [] }, "desc": "<p>A <code>boolean</code> that is <code>true</code> if the TTY is currently configured to operate as a\nraw device. Defaults to <code>false</code>.</p>" }, { "textRaw": "`readStream.isTTY`", "name": "isTTY", "meta": { "added": [ "v0.5.8" ], "changes": [] }, "desc": "<p>A <code>boolean</code> that is always <code>true</code> for <code>tty.ReadStream</code> instances.</p>" } ], "methods": [ { "textRaw": "`readStream.setRawMode(mode)`", "type": "method", "name": "setRawMode", "meta": { "added": [ "v0.7.7" ], "changes": [] }, "signatures": [ { "return": { "textRaw": "Returns: {this} The read stream instance.", "name": "return", "type": "this", "desc": "The read stream instance." }, "params": [ { "textRaw": "`mode` {boolean} If `true`, configures the `tty.ReadStream` to operate as a raw device. If `false`, configures the `tty.ReadStream` to operate in its default mode. The `readStream.isRaw` property will be set to the resulting mode.", "name": "mode", "type": "boolean", "desc": "If `true`, configures the `tty.ReadStream` to operate as a raw device. If `false`, configures the `tty.ReadStream` to operate in its default mode. The `readStream.isRaw` property will be set to the resulting mode." } ] } ], "desc": "<p>Allows configuration of <code>tty.ReadStream</code> so that it operates as a raw device.</p>\n<p>When in raw mode, input is always available character-by-character, not\nincluding modifiers. Additionally, all special processing of characters by the\nterminal is disabled, including echoing input\ncharacters. <kbd>Ctrl</kbd>+<kbd>C</kbd> will no longer cause a <code>SIGINT</code> when\nin this mode.</p>" } ] }, { "textRaw": "Class: `tty.WriteStream`", "type": "class", "name": "tty.WriteStream", "meta": { "added": [ "v0.5.8" ], "changes": [] }, "desc": "<ul>\n<li>Extends: <a href=\"net.html#class-netsocket\" class=\"type\"><net.Socket></a></li>\n</ul>\n<p>Represents the writable side of a TTY. In normal circumstances,\n<a href=\"process.html#processstdout\"><code>process.stdout</code></a> and <a href=\"process.html#processstderr\"><code>process.stderr</code></a> will be the only\n<code>tty.WriteStream</code> instances created for a Node.js process and there\nshould be no reason to create additional instances.</p>", "events": [ { "textRaw": "Event: `'resize'`", "type": "event", "name": "resize", "meta": { "added": [ "v0.7.7" ], "changes": [] }, "params": [], "desc": "<p>The <code>'resize'</code> event is emitted whenever either of the <code>writeStream.columns</code>\nor <code>writeStream.rows</code> properties have changed. No arguments are passed to the\nlistener callback when called.</p>\n<pre><code class=\"language-js\">process.stdout.on('resize', () => {\n console.log('screen size has changed!');\n console.log(`${process.stdout.columns}x${process.stdout.rows}`);\n});\n</code></pre>" } ], "methods": [ { "textRaw": "`writeStream.clearLine(dir[, callback])`", "type": "method", "name": "clearLine", "meta": { "added": [ "v0.7.7" ], "changes": [ { "version": "v12.7.0", "pr-url": "https://github.com/nodejs/node/pull/28721", "description": "The stream's write() callback and return value are exposed." } ] }, "signatures": [ { "return": { "textRaw": "Returns: {boolean} `false` if the stream wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`.", "name": "return", "type": "boolean", "desc": "`false` if the stream wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`." }, "params": [ { "textRaw": "`dir` {number}", "name": "dir", "type": "number", "options": [ { "textRaw": "`-1`: to the left from cursor", "name": "-1", "desc": "to the left from cursor" }, { "textRaw": "`1`: to the right from cursor", "name": "1", "desc": "to the right from cursor" }, { "textRaw": "`0`: the entire line", "name": "0", "desc": "the entire line" } ] }, { "textRaw": "`callback` {Function} Invoked once the operation completes.", "name": "callback", "type": "Function", "desc": "Invoked once the operation completes." } ] } ], "desc": "<p><code>writeStream.clearLine()</code> clears the current line of this <code>WriteStream</code> in a\ndirection identified by <code>dir</code>.</p>" }, { "textRaw": "`writeStream.clearScreenDown([callback])`", "type": "method", "name": "clearScreenDown", "meta": { "added": [ "v0.7.7" ], "changes": [ { "version": "v12.7.0", "pr-url": "https://github.com/nodejs/node/pull/28721", "description": "The stream's write() callback and return value are exposed." } ] }, "signatures": [ { "return": { "textRaw": "Returns: {boolean} `false` if the stream wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`.", "name": "return", "type": "boolean", "desc": "`false` if the stream wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`." }, "params": [ { "textRaw": "`callback` {Function} Invoked once the operation completes.", "name": "callback", "type": "Function", "desc": "Invoked once the operation completes." } ] } ], "desc": "<p><code>writeStream.clearScreenDown()</code> clears this <code>WriteStream</code> from the current\ncursor down.</p>" }, { "textRaw": "`writeStream.cursorTo(x[, y][, callback])`", "type": "method", "name": "cursorTo", "meta": { "added": [ "v0.7.7" ], "changes": [ { "version": "v12.7.0", "pr-url": "https://github.com/nodejs/node/pull/28721", "description": "The stream's write() callback and return value are exposed." } ] }, "signatures": [ { "return": { "textRaw": "Returns: {boolean} `false` if the stream wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`.", "name": "return", "type": "boolean", "desc": "`false` if the stream wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`." }, "params": [ { "textRaw": "`x` {number}", "name": "x", "type": "number" }, { "textRaw": "`y` {number}", "name": "y", "type": "number" }, { "textRaw": "`callback` {Function} Invoked once the operation completes.", "name": "callback", "type": "Function", "desc": "Invoked once the operation completes." } ] } ], "desc": "<p><code>writeStream.cursorTo()</code> moves this <code>WriteStream</code>'s cursor to the specified\nposition.</p>" }, { "textRaw": "`writeStream.getColorDepth([env])`", "type": "method", "name": "getColorDepth", "meta": { "added": [ "v9.9.0" ], "changes": [] }, "signatures": [ { "return": { "textRaw": "Returns: {number}", "name": "return", "type": "number" }, "params": [ { "textRaw": "`env` {Object} An object containing the environment variables to check. This enables simulating the usage of a specific terminal. **Default:** `process.env`.", "name": "env", "type": "Object", "default": "`process.env`", "desc": "An object containing the environment variables to check. This enables simulating the usage of a specific terminal." } ] } ], "desc": "<p>Returns:</p>\n<ul>\n<li><code>1</code> for 2,</li>\n<li><code>4</code> for 16,</li>\n<li><code>8</code> for 256,</li>\n<li><code>24</code> for 16,777,216 colors supported.</li>\n</ul>\n<p>Use this to determine what colors the terminal supports. Due to the nature of\ncolors in terminals it is possible to either have false positives or false\nnegatives. It depends on process information and the environment variables that\nmay lie about what terminal is used.\nIt is possible to pass in an <code>env</code> object to simulate the usage of a specific\nterminal. This can be useful to check how specific environment settings behave.</p>\n<p>To enforce a specific color support, use one of the below environment settings.</p>\n<ul>\n<li>2 colors: <code>FORCE_COLOR = 0</code> (Disables colors)</li>\n<li>16 colors: <code>FORCE_COLOR = 1</code></li>\n<li>256 colors: <code>FORCE_COLOR = 2</code></li>\n<li>16,777,216 colors: <code>FORCE_COLOR = 3</code></li>\n</ul>\n<p>Disabling color support is also possible by using the <code>NO_COLOR</code> and\n<code>NODE_DISABLE_COLORS</code> environment variables.</p>" }, { "textRaw": "`writeStream.getWindowSize()`", "type": "method", "name": "getWindowSize", "meta": { "added": [ "v0.7.7" ], "changes": [] }, "signatures": [ { "return": { "textRaw": "Returns: {number\\[]}", "name": "return", "type": "number\\[]" }, "params": [] } ], "desc": "<p><code>writeStream.getWindowSize()</code> returns the size of the TTY\ncorresponding to this <code>WriteStream</code>. The array is of the type\n<code>[numColumns, numRows]</code> where <code>numColumns</code> and <code>numRows</code> represent the number\nof columns and rows in the corresponding TTY.</p>" }, { "textRaw": "`writeStream.hasColors([count][, env])`", "type": "method", "name": "hasColors", "meta": { "added": [ "v11.13.0", "v10.16.0" ], "changes": [] }, "signatures": [ { "return": { "textRaw": "Returns: {boolean}", "name": "return", "type": "boolean" }, "params": [ { "textRaw": "`count` {integer} The number of colors that are requested (minimum 2). **Default:** 16.", "name": "count", "type": "integer", "default": "16", "desc": "The number of colors that are requested (minimum 2)." }, { "textRaw": "`env` {Object} An object containing the environment variables to check. This enables simulating the usage of a specific terminal. **Default:** `process.env`.", "name": "env", "type": "Object", "default": "`process.env`", "desc": "An object containing the environment variables to check. This enables simulating the usage of a specific terminal." } ] } ], "desc": "<p>Returns <code>true</code> if the <code>writeStream</code> supports at least as many colors as provided\nin <code>count</code>. Minimum support is 2 (black and white).</p>\n<p>This has the same false positives and negatives as described in\n<a href=\"#writestreamgetcolordepthenv\"><code>writeStream.getColorDepth()</code></a>.</p>\n<pre><code class=\"language-js\">process.stdout.hasColors();\n// Returns true or false depending on if `stdout` supports at least 16 colors.\nprocess.stdout.hasColors(256);\n// Returns true or false depending on if `stdout` supports at least 256 colors.\nprocess.stdout.hasColors({ TMUX: '1' });\n// Returns true.\nprocess.stdout.hasColors(2 ** 24, { TMUX: '1' });\n// Returns false (the environment setting pretends to support 2 ** 8 colors).\n</code></pre>" }, { "textRaw": "`writeStream.moveCursor(dx, dy[, callback])`", "type": "method", "name": "moveCursor", "meta": { "added": [ "v0.7.7" ], "changes": [ { "version": "v12.7.0", "pr-url": "https://github.com/nodejs/node/pull/28721", "description": "The stream's write() callback and return value are exposed." } ] }, "signatures": [ { "return": { "textRaw": "Returns: {boolean} `false` if the stream wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`.", "name": "return", "type": "boolean", "desc": "`false` if the stream wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`." }, "params": [ { "textRaw": "`dx` {number}", "name": "dx", "type": "number" }, { "textRaw": "`dy` {number}", "name": "dy", "type": "number" }, { "textRaw": "`callback` {Function} Invoked once the operation completes.", "name": "callback", "type": "Function", "desc": "Invoked once the operation completes." } ] } ], "desc": "<p><code>writeStream.moveCursor()</code> moves this <code>WriteStream</code>'s cursor <em>relative</em> to its\ncurrent position.</p>" } ], "properties": [ { "textRaw": "`writeStream.columns`", "name": "columns", "meta": { "added": [ "v0.7.7" ], "changes": [] }, "desc": "<p>A <code>number</code> specifying the number of columns the TTY currently has. This property\nis updated whenever the <code>'resize'</code> event is emitted.</p>" }, { "textRaw": "`writeStream.isTTY`", "name": "isTTY", "meta": { "added": [ "v0.5.8" ], "changes": [] }, "desc": "<p>A <code>boolean</code> that is always <code>true</code>.</p>" }, { "textRaw": "`writeStream.rows`", "name": "rows", "meta": { "added": [ "v0.7.7" ], "changes": [] }, "desc": "<p>A <code>number</code> specifying the number of rows the TTY currently has. This property\nis updated whenever the <code>'resize'</code> event is emitted.</p>" } ] } ], "methods": [ { "textRaw": "`tty.isatty(fd)`", "type": "method", "name": "isatty", "meta": { "added": [ "v0.5.8" ], "changes": [] }, "signatures": [ { "return": { "textRaw": "Returns: {boolean}", "name": "return", "type": "boolean" }, "params": [ { "textRaw": "`fd` {number} A numeric file descriptor", "name": "fd", "type": "number", "desc": "A numeric file descriptor" } ] } ], "desc": "<p>The <code>tty.isatty()</code> method returns <code>true</code> if the given <code>fd</code> is associated with\na TTY and <code>false</code> if it is not, including whenever <code>fd</code> is not a non-negative\ninteger.</p>" } ], "type": "module", "displayName": "TTY" } ] }
.
Edit
..
Edit
addons.html
Edit
addons.json
Edit
addons.md
Edit
all.html
Edit
all.json
Edit
assert.html
Edit
assert.json
Edit
assert.md
Edit
assets
Edit
async_context.html
Edit
async_context.json
Edit
async_context.md
Edit
async_hooks.html
Edit
async_hooks.json
Edit
async_hooks.md
Edit
buffer.html
Edit
buffer.json
Edit
buffer.md
Edit
child_process.html
Edit
child_process.json
Edit
child_process.md
Edit
cli.html
Edit
cli.json
Edit
cli.md
Edit
cluster.html
Edit
cluster.json
Edit
cluster.md
Edit
console.html
Edit
console.json
Edit
console.md
Edit
corepack.html
Edit
corepack.json
Edit
corepack.md
Edit
crypto.html
Edit
crypto.json
Edit
crypto.md
Edit
debugger.html
Edit
debugger.json
Edit
debugger.md
Edit
deprecations.html
Edit
deprecations.json
Edit
deprecations.md
Edit
dgram.html
Edit
dgram.json
Edit
dgram.md
Edit
diagnostics_channel.html
Edit
diagnostics_channel.json
Edit
diagnostics_channel.md
Edit
dns.html
Edit
dns.json
Edit
dns.md
Edit
documentation.html
Edit
documentation.json
Edit
documentation.md
Edit
domain.html
Edit
domain.json
Edit
domain.md
Edit
embedding.html
Edit
embedding.json
Edit
embedding.md
Edit
errors.html
Edit
errors.json
Edit
errors.md
Edit
esm.html
Edit
esm.json
Edit
esm.md
Edit
events.html
Edit
events.json
Edit
events.md
Edit
fs.html
Edit
fs.json
Edit
fs.md
Edit
globals.html
Edit
globals.json
Edit
globals.md
Edit
http.html
Edit
http.json
Edit
http.md
Edit
http2.html
Edit
http2.json
Edit
http2.md
Edit
https.html
Edit
https.json
Edit
https.md
Edit
index.html
Edit
index.json
Edit
index.md
Edit
inspector.html
Edit
inspector.json
Edit
inspector.md
Edit
intl.html
Edit
intl.json
Edit
intl.md
Edit
module.html
Edit
module.json
Edit
module.md
Edit
modules.html
Edit
modules.json
Edit
modules.md
Edit
n-api.html
Edit
n-api.json
Edit
n-api.md
Edit
net.html
Edit
net.json
Edit
net.md
Edit
os.html
Edit
os.json
Edit
os.md
Edit
packages.html
Edit
packages.json
Edit
packages.md
Edit
path.html
Edit
path.json
Edit
path.md
Edit
perf_hooks.html
Edit
perf_hooks.json
Edit
perf_hooks.md
Edit
permissions.html
Edit
permissions.json
Edit
permissions.md
Edit
policy.html
Edit
policy.json
Edit
policy.md
Edit
process.html
Edit
process.json
Edit
process.md
Edit
punycode.html
Edit
punycode.json
Edit
punycode.md
Edit
querystring.html
Edit
querystring.json
Edit
querystring.md
Edit
readline.html
Edit
readline.json
Edit
readline.md
Edit
repl.html
Edit
repl.json
Edit
repl.md
Edit
report.html
Edit
report.json
Edit
report.md
Edit
stream.html
Edit
stream.json
Edit
stream.md
Edit
string_decoder.html
Edit
string_decoder.json
Edit
string_decoder.md
Edit
synopsis.html
Edit
synopsis.json
Edit
synopsis.md
Edit
test.html
Edit
test.json
Edit
test.md
Edit
timers.html
Edit
timers.json
Edit
timers.md
Edit
tls.html
Edit
tls.json
Edit
tls.md
Edit
tracing.html
Edit
tracing.json
Edit
tracing.md
Edit
tty.html
Edit
tty.json
Edit
tty.md
Edit
url.html
Edit
url.json
Edit
url.md
Edit
util.html
Edit
util.json
Edit
util.md
Edit
v8.html
Edit
v8.json
Edit
v8.md
Edit
vm.html
Edit
vm.json
Edit
vm.md
Edit
wasi.html
Edit
wasi.json
Edit
wasi.md
Edit
webcrypto.html
Edit
webcrypto.json
Edit
webcrypto.md
Edit
webstreams.html
Edit
webstreams.json
Edit
webstreams.md
Edit
worker_threads.html
Edit
worker_threads.json
Edit
worker_threads.md
Edit
zlib.html
Edit
zlib.json
Edit
zlib.md
Edit