Skip to content

Instantly share code, notes, and snippets.

@ThomasCrevoisier
Created November 4, 2016 09:47
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 ThomasCrevoisier/38106674b16a024b82325062e0bf4009 to your computer and use it in GitHub Desktop.
Save ThomasCrevoisier/38106674b16a024b82325062e0bf4009 to your computer and use it in GitHub Desktop.
// The code in a file "main.js"
var args = require('minimist')(process.argv.slice(2));
console.log(args);
/* The test :
*
* node main.js 0.10
*
* The output :
* { _ : [ 0.1 ] }
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment