argv
The process.argv property returns an array containing the command-line arguments passed when the Node.js process was launched. The first element will be process.execPath (path to the node executable) and the second element will be the path to the JavaScript file being executed. The remaning elements will be any additional command-line arguments.