I'm interested in determining if my node script is being called with data being streamed into it or not. That is, I want to differentiate between these two cases
$ node index.js
$ ls | node index.js
I'm interested in determining if my node script is being called with data being streamed into it or not. That is, I want to differentiate between these two cases
$ node index.js
$ ls | node index.js
Share
Improve this question
edited Feb 8, 2023 at 11:18
user3064538
asked Oct 1, 2016 at 0:02
JuanCaicedoJuanCaicedo
3,4583 gold badges20 silver badges37 bronze badges
0
1 Answer
Reset to default 12process.stdin.isTTY
will be falsy (undefined
) when you have data piped to stdin and true
when you don't:
$ node -e "console.log(process.stdin.isTTY)"
true
$ ls | node -e "console.log(process.stdin.isTTY)"
undefined
See docs: https://nodejs/api/tty.html