mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-09-17 17:17:40 +08:00
* batch1 * batch * Update pages/common/locust.md Co-authored-by: Ivan Baluta <50071699+ivanbaluta@users.noreply.github.com> * Update pages/common/locust.md Co-authored-by: Ivan Baluta <50071699+ivanbaluta@users.noreply.github.com> * Update pages/common/locust.md Co-authored-by: Ivan Baluta <50071699+ivanbaluta@users.noreply.github.com> * Update pages/common/locust.md Co-authored-by: Ivan Baluta <50071699+ivanbaluta@users.noreply.github.com> * Update pages/common/locust.md Co-authored-by: Ivan Baluta <50071699+ivanbaluta@users.noreply.github.com> --------- Co-authored-by: Ivan Baluta <50071699+ivanbaluta@users.noreply.github.com> Co-authored-by: Sahil Afrid Farookhi <msafarookhi@gmail.com>
29 lines
749 B
Markdown
29 lines
749 B
Markdown
# node
|
|
|
|
> Server-side JavaScript platform (Node.js).
|
|
> More information: <https://nodejs.org/docs/latest/api/cli.html#options>.
|
|
|
|
- Run a JavaScript file:
|
|
|
|
`node {{path/to/file}}`
|
|
|
|
- Start a REPL (interactive shell):
|
|
|
|
`node`
|
|
|
|
- Execute the specified file restarting the process when an imported file is changed (requires Node.js version 18.11+):
|
|
|
|
`node --watch {{path/to/file}}`
|
|
|
|
- Evaluate 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/file}}`
|