@@ -27,7 +27,7 @@ activate the Inspector API.
2727
2828Since the debugger has full access to the Node.js execution environment, a
2929malicious actor able to connect to this port may be able to execute arbitrary
30- code on behalf of the Node process. It is important to understand the security
30+ code on behalf of the Node.js process. It is important to understand the security
3131implications of exposing the debugger port on public and private networks.
3232
3333### Exposing the debug port publicly is unsafe
@@ -67,13 +67,13 @@ either the IP address or by using ssh tunnels as described below.
6767
6868## Inspector Clients
6969
70- Several commercial and open source tools can connect to Node's Inspector. Basic
71- info on these follows:
70+ Several commercial and open source tools can connect to the Node.js Inspector.
71+ Basic info on these follows:
7272
7373### [ node-inspect] ( https://github.com/nodejs/node-inspect )
7474
7575* CLI Debugger supported by the Node.js Foundation which uses the [ Inspector Protocol] [ ] .
76- * A version is bundled with Node and can be used with ` node inspect myscript.js ` .
76+ * A version is bundled with Node.js and can be used with ` node inspect myscript.js ` .
7777* The latest version can also be installed independently (e.g. ` npm install -g node-inspect ` )
7878 and used with ` node-inspect myscript.js ` .
7979
@@ -112,7 +112,7 @@ info on these follows:
112112### [ Eclipse IDE] ( https://eclipse.org/eclipseide ) with Eclipse Wild Web Developer extension
113113
114114* From a .js file, choose "Debug As... > Node program", or
115- * Create a Debug Configuration to attach debugger to running Node application (already started with ` --inspect ` ).
115+ * Create a Debug Configuration to attach debugger to running Node.js application (already started with ` --inspect ` ).
116116
117117---
118118
@@ -193,8 +193,8 @@ tunnels instead. We provide the following example for illustrative purposes only
193193Please understand the security risk of allowing remote access to a privileged
194194service before proceeding.
195195
196- Let's say you are running Node on remote machine, remote.example.com, that you
197- want to be able to debug. On that machine, you should start the node process
196+ Let's say you are running Node.js on a remote machine, remote.example.com, that
197+ you want to be able to debug. On that machine, you should start the node process
198198with the inspector listening only to localhost (the default).
199199
200200``` bash
@@ -217,8 +217,8 @@ which should be able to debug as if the Node.js application was running locally.
217217
218218## Legacy Debugger
219219
220- ** The legacy debugger has been deprecated as of Node 7.7.0. Please use --inspect
221- and Inspector instead.**
220+ ** The legacy debugger has been deprecated as of Node.js 7.7.0. Please use
221+ ` --inspect ` and Inspector instead.**
222222
223223When started with the ** --debug** or ** --debug-brk** switches in version 7 and
224224earlier, Node.js listens for debugging commands defined by the discontinued
@@ -230,9 +230,9 @@ The V8 Debugging Protocol is no longer maintained or documented.
230230
231231### [ Built-in Debugger] ( https://nodejs.org/dist/latest-v6.x/docs/api/debugger.html )
232232
233- Start ` node debug script_name.js ` to start your script under Node's builtin
234- command-line debugger. Your script starts in another Node process started with
235- the ` --debug-brk ` option, and the initial Node process runs the ` _debugger.js `
233+ Start ` node debug script_name.js ` to start your script under the builtin
234+ command-line debugger. Your script starts in another Node.js process started with
235+ the ` --debug-brk ` option, and the initial Node.js process runs the ` _debugger.js `
236236script and connects to your target.
237237
238238### [ node-inspector] ( https://github.com/node-inspector/node-inspector )
0 commit comments