当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js process.stderr用法及代码示例


process.stderr 是 process 模块中 Process 类的内置应用程序编程接口,用于返回连接到 stderr 的流。

用法:

const process.stderr

参数:此api不使用任何参数作为参数。

返回值:这个 api 返回一个连接到 stderr 的流。



范例1:

index.js


// Node.js program to demonstrate the  
// Process.stderr
  
// Importing process module
const process = require('process');
  
// Getting the stream 
// by using proceess.stderr
const stream = process.stderr
  
// Display the result
console.log(stream.rows)

使用以下命令运行index.js文件:

node index.js

输出:

16

范例2:

index.js


// Node.js program to demonstrate the  
// Process.stderr
  
// Importing process module
const process = require('process');
  
// Display the result
console.log(process.stderr.columns)

使用以下命令运行index.js文件:

node index.js

输出:

147

参考: https://nodejs.org/dist/latest-v16.x/docs/api/process.html#process_process_stderr

相关用法


注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 Node.js process.stderr Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。