How to read command line arguments in node js
When we are designing any generalized program, in some cases we need to pass data from the command line. A simple example may be a calculator, which takes input from the command line and prints the output in the console. Reading a command line data is a basic and simple task in Node.js. When we run the program, all the arguments received from the command line is set to “process.argv” property. Process is a global object. If you want to…
0
Read More