What does –inspect?
Enables the Node.js debugger on localhost:9229.
What does —-env-file <path>?</path>
Loads environment variables from a .env file.
What does –check?
Checks the syntax of the script without executing it.
What does –require?
Preloads a specified module before executing the script (similar to require in code).
What does –max-old-space-size=<size>?</size>
Sets the maximum memory size for the V8 heap (default: ~1.5 GB)
How do you read args from the CLI?
process.argv
How do you use readline lib?
readline.createInterface({input, output}), and readline.question(‘question’, callback)