1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-24 12:35:24 +02:00

node: add --inspect-brk example

This commit is contained in:
tkolleh 2020-07-22 14:33:50 -04:00 committed by Starbeamrainbowlabs
parent 9f2c29171c
commit d6199ecf7d

View file

@ -18,3 +18,7 @@
- Evaluate and print result, useful to see node's dependencies versions:
`node -p "{{process.versions}}"`
- Enable Node's inspector agent and pause execution until a debugger is connected. Source code is fully compiled:
`node --no-lazy --inspect-brk {{file}}.js`