I have package.json like this:
  "scripts": {
    "start": "node list_users.js",
}
and list.js file
    const process = require('process');
var args = process.argv;
when I run npm start I want to pass this to pass to JS file, How can I do that?
 
    