In Node.js, the process.argv property is an array that contains the command-line arguments passed when running a Node.js script. The first element (process.argv[0]) is the path to the Node.js executable, the second element (process.argv[1]) is the path to the script file, and the subsequent elements are the actual command-line arguments.