tldr/pages/common/node.md

29 lines
689 B
Markdown
Raw Normal View History

2015-10-22 08:31:52 +01:00
# node
2014-03-05 20:37:38 +00:00
> Server-side JavaScript platform (Node.js).
> More information: <https://nodejs.org>.
2014-03-05 20:37:38 +00:00
- Run a JavaScript file:
2015-12-25 22:17:46 +00:00
`node {{path/to/file}}`
2015-12-25 22:17:46 +00:00
2016-02-28 20:09:02 +00:00
- Start a REPL (interactive shell):
2014-03-05 20:37:38 +00:00
`node`
2022-10-17 03:04:15 +01:00
- Execute the specified file restarting the process when an imported file is changed (requires Node.js version 18.11+):
`node --watch {{path/to/file}}`
2020-10-22 17:30:16 +01:00
- Evaluate JavaScript code by passing it as an argument:
2014-03-05 20:37:38 +00:00
2015-12-25 22:17:46 +00:00
`node -e "{{code}}"`
- Evaluate and print the result, useful to print node's dependencies versions:
`node -p "process.versions"`
2020-07-22 19:33:50 +01:00
- Activate inspector, pausing execution until a debugger is connected once source code is fully parsed:
2020-07-22 19:33:50 +01:00
`node --no-lazy --inspect-brk {{path/to/file}}`