var myArgs = process.argv.slice(2);
console.log('myArgs: ', myArgs);
// print process.argv
process.argv.forEach(function (val, index, array) {
console.log(index + ': ' + val);
});
//This will generate:
$ node process-2.js one two=three four
0: node
1: /Users/mjr/work/node/process-2.js
2: one
3: two=three
4: four
[
full-path-to-node-executable,
full-path-to-the-script-file
...additonal-arguments-we-provide
]