File tree Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -94,6 +94,26 @@ Follows `require()`'s module resolution
9494rules. ` module ` may be either a path to a file, or a node module name.
9595
9696
97+ ### ` --inspect[=host:port] `
98+ <!-- YAML
99+ added: v6.3.0
100+ -->
101+
102+ Activate inspector on host: port . Default is 127.0.0.1:9229.
103+
104+ V8 inspector integration allows tools such as Chrome DevTools and IDEs to debug
105+ and profile Node.js instances. The tools attach to Node.js instances via a
106+ tcp port and communicate using the [ Chrome Debugging Protocol] [ ] .
107+
108+
109+ ### ` --inspect-brk[=host:port] `
110+ <!-- YAML
111+ added: v7.6.0
112+ -->
113+
114+ Activate inspector on host: port and break at start of user script.
115+
116+
97117### ` --no-deprecation `
98118<!-- YAML
99119added: v0.8.0
@@ -425,6 +445,7 @@ OpenSSL, it may cause them to trust the same CAs as node.
425445
426446[ emit_warning ] : process.html#process_process_emitwarning_warning_name_ctor
427447[ Buffer ] : buffer.html#buffer_buffer
448+ [ Chrome Debugging Protocol ] : https://chromedevtools.github.io/debugger-protocol-viewer
428449[ debugger ] : debugger.html
429450[ REPL ] : repl.html
430451[ SlowBuffer ] : buffer.html#buffer_class_slowbuffer
Original file line number Diff line number Diff line change @@ -92,6 +92,17 @@ Open the REPL even if stdin does not appear to be a terminal.
9292Preload the specified module at startup. Follows `require()`'s module resolution
9393rules. \fI module \fR may be either a path to a file, or a node module name.
9494
95+ .TP
96+ .BR \-\- inspect \fI [=host:port] \fR
97+ Activate inspector on host:port. Default is 127.0.0.1:9229.
98+
99+ V8 Inspector integration allows attaching Chrome DevTools and IDEs to Node.js
100+ instances for debugging and profiling. It uses the Chrome Debugging Protocol.
101+
102+ .TP
103+ .BR \-\- inspect-brk \fI [=host:port] \fR
104+ Activate inspector on host:port and break at start of user script.
105+
95106.TP
96107.BR \-\- no\- deprecation
97108Silence deprecation warnings.
You can’t perform that action at this time.
0 commit comments