Skip to content

Instantly share code, notes, and snippets.

@aGuyNamedJonas
Created May 30, 2016 15:37
Show Gist options
  • Save aGuyNamedJonas/99f523efe6113070302165bf69ddf99a to your computer and use it in GitHub Desktop.
Save aGuyNamedJonas/99f523efe6113070302165bf69ddf99a to your computer and use it in GitHub Desktop.
node.js: List commandline arguments (#GistToSelf)
// print process.argv
process.argv.forEach(function (val, index, array) {
console.log(index + ': ' + val);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment