![]() |
VOOZH | about |
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.
process.argv0Return 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.exeNote: The above program will compile and run by using the node filename.js command.
Reference: https://nodejs.org/api/process.html#process_process_argv0