I would like to log things to the terminal without writing them to process.stdout or process.stderr so that piping the process doesn't end up being polluted by those logs.
That's very much the equivalent of echo "hello" > /dev/tty in bash (see this question), but I can't find how to directly access /dev/tty from node.