node
Server-side JavaScript platform (Node.js).
node {path/to/file}
- Start a REPL (interactive shell):
node
- Evaluate JavaScript code by passing it as an argument:
node -e "{code}"
- Evaluate and print result, useful to see node's dependencies versions:
node -p "{process.versions}"
- Activate inspector, pausing execution until a debugger is connected once source code is fully parsed:
node --no-lazy --inspect-brk {path/to/file}
Copyright © 2014—present the tldr-pages team and contributors.
This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).