1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/node.md

29 lines
689 B
Markdown
Raw Normal View History

2015-10-22 15:31:52 +08:00
# node
2014-03-05 21:37:38 +01:00
> Server-side JavaScript platform (Node.js).
> More information: <https://nodejs.org>.
2014-03-05 21:37:38 +01: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 21:09:02 +01:00
- Start a REPL (interactive shell):
2014-03-05 21:37:38 +01:00
`node`
2022-10-16 23:04:15 -03: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 09:30:16 -07:00
- Evaluate JavaScript code by passing it as an argument:
2014-03-05 21:37:38 +01: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 14:33:50 -04:00
- Activate inspector, pausing execution until a debugger is connected once source code is fully parsed:
2020-07-22 14:33:50 -04:00
`node --no-lazy --inspect-brk {{path/to/file}}`