⌘K
Options (2)
-e, --evalbooleanEvaluate JavaScript code by passing it as an argument
Example:
node {{[-e|--eval]}} "{{code}}"-p, --printbooleanEvaluate and print the result, useful to print node's dependencies versions
Example:
node {{[-p|--print]}} "process.versions"Examples (6)
Run a JavaScript file
node path/to/fileStart a REPL (interactive shell)
nodeExecute the specified file restarting the process when an imported file is changed (requires Node.js version 18.11+)
node --watch path/to/fileEvaluate JavaScript code by passing it as an argument
node [-e|--eval] "code"Evaluate and print the result, useful to print node's dependencies versions
node [-p|--print] "process.versions"Activate inspector, pausing execution until a debugger is connected once source code is fully parsed
node --no-lazy --inspect-brk path/to/filemade by @shridhargupta | data from tldr-pages