process.report是过程模块中的Process类的内置应用程序编程接口,用于提供生成当前过程的诊断报告的方法。
用法:
const process.report
返回值:此属性返回用于生成当前过程的诊断报告的方法。
范例1:
index.js
// Node.js program to demonstrate the
// Process.report Property
// Importing process module
const process = require('process');
// Getting reports of the current process
const reports = process.report;
// Display the result
console.log(reports)
使用以下命令运行index.js文件:
node index.js
输出:
{ writeReport:[Function:writeReport], getReport:[Function:getReport], directory:[Getter/Setter], filename:[Getter/Setter], compact:[Getter/Setter], signal:[Getter/Setter], reportOnFatalError:[Getter/Setter], reportOnSignal:[Getter/Setter], reportOnUncaughtException:[Getter/Setter] }
范例2:
index.js
// Node.js program to demonstrate the
// Process.report Property
// Importing process module
const process = require('process');
// If Report is present
if (process.report) {
// Printing Report Compact Status
console.log(process.report.compact)
} else {
console.log("Unable to print Report Compact Status")
}
使用以下命令运行index.js文件:
node index.js
输出:
false
参考: https://nodejs.org/dist/latest-v16.x/docs/api/process.html#process_process_report
相关用法
- Node.js GM charcoal()用法及代码示例
- Node.js GM blur()用法及代码示例
- Node.js GM sharpen()用法及代码示例
- Node.js GM drawLine()用法及代码示例
注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 Node.js process.report Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。