Skip to content

Instantly share code, notes, and snippets.

@Sasha-hk
Created April 8, 2022 23:59
Show Gist options
  • Save Sasha-hk/76018b2a36a76b3b972ad420cc376651 to your computer and use it in GitHub Desktop.
Save Sasha-hk/76018b2a36a76b3b972ad420cc376651 to your computer and use it in GitHub Desktop.

Get arguments in Node.js

Code:

function getArgs() {
  return process.argv.slice(2);
}

console.log('Args: ', gerArgs());

Run:

node [file_name]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment