Node.js process.report.signal Property
The process.report is an object whose methods are used to generate diagnostic reports for the current process. The signal used to trigger the creation of a diagnostic report. Defaults to ‘SIGUSR2’.
Syntax:
process.report.signal
Return Value: This property returns the generated diagnostic reports for the current process.
Below examples illustrate the use of the process.report.signal property in Node.js:
Example:
index.js
// Node.js program to demonstrate the // process.report.signal Property // Include process module const process = require( 'process' ); // Printing process.report.signal property value console.log(`Report signal: ${process.report.signal}`); |
Command to run:
node index.js
Output:
Note: The above program will compile and run by using the node filename.js command.
Reference:https://nodejs.org/api/process.html#process_process_report_signal
Please Login to comment...