Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

33
node Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# node
> Server-side JavaScript platform (Node.js).
> More information: <https://nodejs.org>.
- 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 "{{code}}"`
- Evaluate and print the result, useful to print 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}}`