A propriedade writeStream.isTTY é uma interface de programação de aplicativo embutida da classe WriteStream dentro do módulo 'tty' que é usada para verificar se o objeto Stream de gravação é uma instância de tty ou não. Ele sempre retornará verdadeiro para tty, writeStream.

Sintaxe:

const writeStream.isTTY

Valor de retorno: esta propriedade retorna true se o objeto Stream de gravação for uma instância de tty.

Exemplo 1: Nome do arquivo: index.js

// Node.js program to demonstrate the
// writeStream.isTTY property
 
// Importing dgram module
var dgram = require('dgram');
 
 
// Creating and initializing client
// and server socket
var client = dgram.createSocket("udp4");
var server = dgram.createSocket("udp4");
 
// Catching the message event
server.on("message", function (msg) {
 
    // Creating and initializing a
    // WriteStream object
    let WriteStream = process.stdout;
 
    // Checking if it is instance of TTY
    // or not by using isTTY() method
    const status = WriteStream.isTTY;
 
    // Displaying the result
    if (status)
        process.stdout.write(msg
            + "an instant of TTY" + "\n");
    else
        process.stdout.write(msg
            + "not an instant of TTY" + "\n");
 
    // Exiting process
    process.exit();
})
 
// Binding server with port
.bind(1234, () => {
});
 
// Client sending message to server
client.send("It is ", 0, 7, 1234, "localhost");

Saída:

It is an instant of TTY

Exemplo 2: Nome do arquivo: index.js

// Node.js program to demonstrate the
// writeStream.isTTY() property
 
// Creating and initializing a
// WriteStream object
let WriteStream = process.stdout;
 
// Checking if it is instance of
// TTY or not by using isTTY() method
const status = WriteStream.isTTY;
 
// Displaying the result
if(status)
    console.log("It is an instant of TTY");
else
    console.log("It is not an instant of TTY");

Saída:

It is an instant of TTY

Execute o arquivo index.js usando o seguinte comando:

node index.js

Referência: https://nodejs.org/dist/latest-v12.x/docs/api/tty.html#tty_writestream_istty