{ "type": "module", "source": "doc/api/tty.md", "modules": [ { "textRaw": "TTY", "name": "tty", "introduced_in": "v0.10.0", "stability": 2, "stabilityText": "Stable", "desc": "

Source Code: lib/tty.js

\n

The tty module provides the tty.ReadStream and tty.WriteStream classes.\nIn most cases, it will not be necessary or possible to use this module directly.\nHowever, it can be accessed using:

\n
const tty = require('tty');\n
\n

When Node.js detects that it is being run with a text terminal (\"TTY\")\nattached, process.stdin will, by default, be initialized as an instance of\ntty.ReadStream and both process.stdout and process.stderr will, by\ndefault be instances of tty.WriteStream. The preferred method of determining\nwhether Node.js is being run within a TTY context is to check that the value of\nthe process.stdout.isTTY property is true:

\n
$ node -p -e \"Boolean(process.stdout.isTTY)\"\ntrue\n$ node -p -e \"Boolean(process.stdout.isTTY)\" | cat\nfalse\n
\n

In most cases, there should be little to no reason for an application to\nmanually create instances of the tty.ReadStream and tty.WriteStream\nclasses.

", "classes": [ { "textRaw": "Class: `tty.ReadStream`", "type": "class", "name": "tty.ReadStream", "meta": { "added": [ "v0.5.8" ], "changes": [] }, "desc": "\n

Represents the readable side of a TTY. In normal circumstances\nprocess.stdin will be the only tty.ReadStream instance in a Node.js\nprocess and there should be no reason to create additional instances.

", "properties": [ { "textRaw": "`readStream.isRaw`", "name": "isRaw", "meta": { "added": [ "v0.7.7" ], "changes": [] }, "desc": "

A boolean that is true if the TTY is currently configured to operate as a\nraw device. Defaults to false.

" }, { "textRaw": "`readStream.isTTY`", "name": "isTTY", "meta": { "added": [ "v0.5.8" ], "changes": [] }, "desc": "

A boolean that is always true for tty.ReadStream instances.

" } ], "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": "

Allows configuration of tty.ReadStream so that it operates as a raw device.

\n

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 characters.\nCTRL+C will no longer cause a SIGINT when in this mode.

" } ] }, { "textRaw": "Class: `tty.WriteStream`", "type": "class", "name": "tty.WriteStream", "meta": { "added": [ "v0.5.8" ], "changes": [] }, "desc": "\n

Represents the writable side of a TTY. In normal circumstances,\nprocess.stdout and process.stderr will be the only\ntty.WriteStream instances created for a Node.js process and there\nshould be no reason to create additional instances.

", "events": [ { "textRaw": "Event: `'resize'`", "type": "event", "name": "resize", "meta": { "added": [ "v0.7.7" ], "changes": [] }, "params": [], "desc": "

The 'resize' event is emitted whenever either of the writeStream.columns\nor writeStream.rows properties have changed. No arguments are passed to the\nlistener callback when called.

\n
process.stdout.on('resize', () => {\n  console.log('screen size has changed!');\n  console.log(`${process.stdout.columns}x${process.stdout.rows}`);\n});\n
" } ], "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": "

writeStream.clearLine() clears the current line of this WriteStream in a\ndirection identified by dir.

" }, { "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": "

writeStream.clearScreenDown() clears this WriteStream from the current\ncursor down.

" }, { "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": "

writeStream.cursorTo() moves this WriteStream's cursor to the specified\nposition.

" }, { "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": "

Returns:

\n\n

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 env object to simulate the usage of a specific\nterminal. This can be useful to check how specific environment settings behave.

\n

To enforce a specific color support, use one of the below environment settings.

\n\n

Disabling color support is also possible by using the NO_COLOR and\nNODE_DISABLE_COLORS environment variables.

" }, { "textRaw": "`writeStream.getWindowSize()`", "type": "method", "name": "getWindowSize", "meta": { "added": [ "v0.7.7" ], "changes": [] }, "signatures": [ { "return": { "textRaw": "Returns: {number[]}", "name": "return", "type": "number[]" }, "params": [] } ], "desc": "

writeStream.getWindowSize() returns the size of the TTY\ncorresponding to this WriteStream. The array is of the type\n[numColumns, numRows] where numColumns and numRows represent the number\nof columns and rows in the corresponding TTY.

" }, { "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": "

Returns true if the writeStream supports at least as many colors as provided\nin count. Minimum support is 2 (black and white).

\n

This has the same false positives and negatives as described in\nwriteStream.getColorDepth().

\n
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
" }, { "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": "

writeStream.moveCursor() moves this WriteStream's cursor relative to its\ncurrent position.

" } ], "properties": [ { "textRaw": "`writeStream.columns`", "name": "columns", "meta": { "added": [ "v0.7.7" ], "changes": [] }, "desc": "

A number specifying the number of columns the TTY currently has. This property\nis updated whenever the 'resize' event is emitted.

" }, { "textRaw": "`writeStream.isTTY`", "name": "isTTY", "meta": { "added": [ "v0.5.8" ], "changes": [] }, "desc": "

A boolean that is always true.

" }, { "textRaw": "`writeStream.rows`", "name": "rows", "meta": { "added": [ "v0.7.7" ], "changes": [] }, "desc": "

A number specifying the number of rows the TTY currently has. This property\nis updated whenever the 'resize' event is emitted.

" } ] } ], "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": "

The tty.isatty() method returns true if the given fd is associated with\na TTY and false if it is not, including whenever fd is not a non-negative\ninteger.

" } ], "type": "module", "displayName": "TTY" } ] }