Stdout flush for NodeJS?

前端 未结 2 489
攒了一身酷
攒了一身酷 2021-02-11 16:26

Is there any stdout flush for nodejs just like python or other languages?

sys.stdout.write(\'some data\')

sys.stdout.flush()

Right now I only

2条回答
  •  北海茫月
    2021-02-11 16:56

    process.stdout is a WritableStream object, and the method WritableStream.write() automatically flushes the stream (unless it was explicitly corked). However, it will return true if the flush was successful, and false if the kernel buffer was full and it can't write yet. If you need to write several times in succession, you should handle the drain event.

    See the documentation for write.

提交回复
热议问题