mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-06 10:56:41 +00:00
702 B
702 B
Process Module
Provides information about, and control over, the current Node.js process
Properties
process.argv // string[] containing the command-line arguments passed when the Node.js process was launched
process.pid // PID of the process
process.env // list of ENV Variables
process.platform // identifier of the OS
process.arch // processor architecture
Functions
process.resourceUsage(); // resource usage for the current process
process.memoryUsage(); // memory usage of the Node.js process measured in bytes
process.exit(code); // terminate the process synchronously with an exit status of code
Events
process.on("event", (code) => { });