On this page

C

tty.WriteStream

History
class tty.WriteStream extends net.Socket

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

C

tty.ReadStream Constructor

History
new tty.ReadStream(fd, options?): tty.ReadStream
Attributes
A file descriptor associated with a TTY.
options:Object
Options passed to parent net.Socket, see options of net.Socket constructor.

Creates a ReadStream for fd associated with a TTY.

C

tty.WriteStream Constructor

History
new tty.WriteStream(fd): tty.WriteStream
Attributes
A file descriptor associated with a TTY.

Creates a WriteStream for fd associated with a TTY.

E

resize

History

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

process.stdout.on('resize', () => {
  console.log('screen size has changed!');
  console.log(`${process.stdout.columns}x${process.stdout.rows}`);
});
writeStream.clearLine(dir, callback?): boolean
Attributes
dir:number
-1:
to the left from cursor
1:
to the right from cursor
0:
the entire line
callback:Function
Invoked once the operation completes.
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.

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

writeStream.clearScreenDown(callback?): boolean
Attributes
callback:Function
Invoked once the operation completes.
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.

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

P

writeStream.columns

History

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

writeStream.cursorTo(x, y?, callback?): boolean
Attributes
callback:Function
Invoked once the operation completes.
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.

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

M

writeStream.getColorDepth

History
writeStream.getColorDepth(env?): number
Attributes
env?:Object
An object containing the environment variables to check. This enables simulating the usage of a specific terminal. Default: process.env.
Returns:number

Returns:

  • 1 for 2,
  • 4 for 16,
  • 8 for 256,
  • 24 for 16,777,216 colors supported.

Use this to determine what colors the terminal supports. Due to the nature of colors in terminals it is possible to either have false positives or false negatives. It depends on process information and the environment variables that may lie about what terminal is used. It is possible to pass in an env object to simulate the usage of a specific terminal. This can be useful to check how specific environment settings behave.

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

  • 2 colors: FORCE_COLOR = 0 (Disables colors)
  • 16 colors: FORCE_COLOR = 1
  • 256 colors: FORCE_COLOR = 2
  • 16,777,216 colors: FORCE_COLOR = 3

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

M

writeStream.getWindowSize

History
writeStream.getWindowSize(): number[]
Returns:number[]

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

M

writeStream.hasColors

History
writeStream.hasColors(count?, env?): boolean
Attributes
count?:integer
The number of colors that are requested (minimum 2). Default: 16.
env?:Object
An object containing the environment variables to check. This enables simulating the usage of a specific terminal. Default: process.env.
Returns:boolean

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

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

process.stdout.hasColors();
// Returns true or false depending on if `stdout` supports at least 16 colors.
process.stdout.hasColors(256);
// Returns true or false depending on if `stdout` supports at least 256 colors.
process.stdout.hasColors({ TMUX: '1' });
// Returns true.
process.stdout.hasColors(2 ** 24, { TMUX: '1' });
// Returns false (the environment setting pretends to support 2 ** 8 colors).
P

writeStream.isTTY

History

A boolean that is always true.

writeStream.moveCursor(dx, dy, callback?): boolean
Attributes
callback:Function
Invoked once the operation completes.
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.

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

P

writeStream.rows

History

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