This website collects cookies to deliver better user experience
How to take command line arguments in NodeJS?
How to take command line arguments in NodeJS?
Taking arguments from the command line is very common. You can take certain arguments you need as variables, certain flags, etc. In NodeJS, it's very easy
Process Object
NodeJS exposes an array of argument values in the form of process.argv.
The first element of the array is the Node Executable file in your machine. The second element is the file you're running. You can now take the arguments with indexes 2, 3, 4, etc. like process.argv[2], process.argv[3], etc.
But a nicer way would be to remove the first two elements from the array like soindex.js
You can also use this way to take flags from the command line like -s,-o,--help, etc, like in my [Airtable Url CLI](https://github.com/kavin25/airtable-url-cli).
But, a better way would be to use a third party library likeyargs`. It can really make this much easier and with lesser code.