Skip to content

Instantly share code, notes, and snippets.

@kevinhooke
Created April 13, 2020 22:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kevinhooke/c1ee4875805314eb5c781d82b5b890d7 to your computer and use it in GitHub Desktop.
Save kevinhooke/c1ee4875805314eb5c781d82b5b890d7 to your computer and use it in GitHub Desktop.
nodejs command line args
console.log(process.argv);
$node example.js a b c
['node', //0
'example.js', //1
'a', //2
'b', //3
'c'] //4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment