如何每次都记录该数据流而没有换行符?

websocket.on('message', (msg) => {
    console.log(msg.content);
  }
});


以上将导致:

> streamedContent-1
> streamedContent-2
> streamedContent-3..


我想要实现的是:

> streamedContent-n // this line getting updated on each refresh, no new line

最佳答案

您可以在Node应用程序中使用c ++ stdout方法在运行时“编辑”一行。

process.stdout.clearLine()
process.stdout.write(`\r${msg.content}`);

关于javascript - 在NodeJS中不使用换行符进行记录,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58040693/

10-10 11:09