VOOZH about

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

⇱ Node.js process.title Property - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Node.js process.title Property

Last Updated : 12 Oct, 2021
The process.title property is an inbuilt application programming interface of the process module which is used to get and set the title of the process. Syntax:
process.title
Return Value: This property returns a string value that specifies the title of the process, current value is 'ps'. Note: Assigning the new value to this property will modify the current value. The different platforms can impose a restriction on the maximum length of process title. Below examples illustrate the use of process.title property in Node.js: Example 1: Output:
PID: 8852 process title is Command Prompt - node title_1
Example 2: Output:
Before modification: PID: 14012 process title is Command Prompt - node title_2
After modification: PID: 14012 process title is gekchosCustomProcess
Note: The above program will compile and run by using the node filename.js command. Reference: https://nodejs.org/api/process.html#process_process_title
Comment

Explore