防止 Node.js 中的文本被 Stream.write() 覆盖

发布于 2024-10-08 12:30:53 字数 225 浏览 3 评论 0原文

我正在使用 Node.js 创建聊天。本质上,它使用 net 模块来创建服务器。连接到服务器的每个人都会添加到列表中。通过参与者列表将数据输入到服务器 forEach(),并通过 .write() 将消息传输到服务器。但有一个问题。如果您正在键入(并且直接在终端窗口中键入)并且某些内容被写入您的流中,则您键入的所有内容(但尚未提交)都会被覆盖。有什么办法可以防止这种情况发生吗?我对此表示怀疑。您可能甚至不应该使用如此基本的聊天程序。

I am using Node.js to create a chat. Essentially, it uses the net module to create a server. Everyone that connects to the server is added to a list. Inputting data to the server forEach()s through the list of participants, and streams them the message via .write(). There's a problem, though. If you are typing (and you type directly into the terminal window) and something is written to your stream, everything you have typed (but not yet submitted) is overwritten. Is there any way to prevent this from happening? I doubt it. You probably shouldn't even be using something so rudimentary for a chat program.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笨死的猪 2024-10-15 12:30:53

如果您使用低级 stdin/stdout 那么实际上您无能为力(除非您每次都清除屏幕并重新绘制自己的缓冲区)。

通常,如果您想留在终端中,您会使用诅咒。快速浏览一下模块页面就会发现有一个Node.js 的 ncurses 绑定

我还没有对此进行测试,但如果您想保留旧学校终端,这似乎是完成任务的最快方法(也就是说,如果它在 2.5/3.x 中仍然有效)。

If you're using low level stdin / stdout then there is in fact nothing you can do (unless you clear the screen and redraw your own buffer each time).

Normally if you want to stay in the terminal, you'd use curses. A quick gaze at the modules page reveals that there is a ncurses binding for Node.js.

I haven't tested that, but that seems to be the fastest way of getting the thing done (that is, in case it still works in 2.5/3.x) if you want to stay old school terminal.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文