VOOZH about

URL: https://www.geeksforgeeks.org/node-js/node-js-process-pid-property/

⇱ Node.js process.pid Property - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Node.js process.pid Property

Last Updated : 12 Oct, 2021
The process.pid property is an inbuilt application programming interface of the process module which is used to get the PID of the process. Syntax:
process.pid
Return Value: This property returns an integer value specifying the PID of the process. Below examples illustrate the use of process.pid property in Node.js: Example: Output:
process id is 11436
Note: The above program will compile and run by using the node filename.js command. Reference: https://nodejs.org/api/process.html#process_process_pid
Comment

Explore