gpt4 book ai didi

node.js - 如何读取 STDIN 并启动祝福的终端应用程序?

转载 作者:太空宇宙 更新时间:2023-11-04 00:04:12 25 4
gpt4 key购买 nike

我正在构建一个 Node.js 应用程序。我正在尝试读取 STDIN 缓冲区,解析它,然后启动我的祝福程序,但是如果我尝试读取 STDIN,我的祝福程序会立即关闭。另外,输入法不起作用。

这是一个例子:

// Read stdin into buff
const stdin = process.stdin
stdin.setEncoding('utf8')

let buff = ''
function read() {
let chunk

while ((chunk = stdin.read())) {
buff += chunk
}
}

stdin.on('readable', read)

stdin.on('end', () => {
input = buff
})

创建一些应用程序:

const program = blessed.program()
const screen = blessed.screen({
program: program,
smartCSR: true,
})

// Add box with mouse and keys events, etc.

运行程序回显某些内容| Node index.js。应用程序立即关闭。

最佳答案

我自己找到了解决方案:

const ttyFd = fs.openSync('/dev/tty', 'r+')

const program = blessed.program({
input: tty.ReadStream(ttyFd),
output: tty.WriteStream(ttyFd),
})

const screen = blessed.screen({
program: program,
smartCSR: true,
})

关于node.js - 如何读取 STDIN 并启动祝福的终端应用程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53112878/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com