On this page you find all important commands for the CLI tool node. If the
command you are looking for is missing please ask our AI.
node
Node.jsĀ® is an open-source, cross-platform JavaScript runtime environment.
List of commands for node:
-
node:application:run This command runs a Node.js project by executing the entry file specified in the project.$ node ${entry-file}try on your machineexplain this command
-
node:tldr:01bac node: Activate inspector, pausing execution until a debugger is connected once source code is fully parsed.$ node --no-lazy --inspect-brk ${filename}try on your machineexplain this command
-
node:tldr:11602 node: Evaluate JavaScript code by passing it as an argument.$ node -e "${code}"try on your machineexplain this command
-
node:tldr:36c45 node: Start a REPL (interactive shell).$ nodetry on your machineexplain this command
-
node:tldr:a6fc1 node: Evaluate and print the result, useful to print node's dependencies versions.$ node -p "process.versions"try on your machineexplain this command
-
node:tldr:bb1ac node: Execute the specified file restarting the process when an imported file is changed (requires Node.js version 18.11+).$ node --watch ${filename}try on your machineexplain this command