流逝的是岁月,不变的是情怀.
坚持学习,是为了成就更好的自己.
公众号[中关村程序员]

在学习 node 的 stream 之前,先抛出一个问题

如何找到所有 node 的进程?

我们一般会使用以下命令来解决这个问题

$ ps -ef | grep node

其中,它运行了 psgrep 两个进程,它们之间通过 | 来衔接输入输出,而 | 就是管道 (pipe)。

# pipe (管道)

pipe 可以把源数据从一端导向另一端

# Readable

const Readable = require('stream').Readable

const src = new Readable()
src.push('hello')
src.push('world')
src.push(null)

src.pipe(process.stdout)
上次更新: 7/20/2020, 2:09:44 AM