最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Detect if node receives stdin - Stack Overflow

programmeradmin3浏览0评论

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
Add a ment  | 

1 Answer 1

Reset to default 12

process.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

发布评论

评论列表(0)

  1. 暂无评论