VOOZH about

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

⇱ Node.js process.argv0 Property - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Node.js process.argv0 Property

Last Updated : 23 Sep, 2024

The process.argv0 property is an inbuilt application programming interface of the process module which is used to get the read-only copy of the original value of argv[0] passed to the node.js process when running the command line.

Syntax:

process.argv0

Return Value: This property returns a string that specifies the first argument passed to the process when running in the command line. Below examples illustrate the use of process.argv0 property in Node.js:

Example: This example demonstrates that process.argv0 property returns the executable file name or path that started the process.

Output:

node.exe

Note: The above program will compile and run by using the node filename.js command.

Reference: https://nodejs.org/api/process.html#process_process_argv0

Comment

Explore