process.stderr
process.stderr
属性返回连接到 stderr
(文件描述符 2
) 的流。它是一个 net.Socket
(它是一个 双工 流)除非 fd 2
引用一个文件,在这种情况下它是一个 可写 流。
¥The process.stderr
property returns a stream connected to
stderr
(fd 2
). It is a net.Socket
(which is a Duplex
stream) unless fd 2
refers to a file, in which case it is
a Writable stream.
process.stderr
在一些重要的方面不同于其他 Node.js 流。有关详细信息,请参阅 关于进程 I/O 的注意事项。
¥process.stderr
differs from other Node.js streams in important ways. See
note on process I/O for more information.