Steps to reproduce.
Filename is
index.js
and its contents:'use strict'; debugger; let a = 10; // doesn't mean anything in regards to the issue.
Run
node-debug
against the file.$ node-debug index.js Node Inspector v0.12.8 Visit http://127.0.0.1:8080/?port=5858 to start debugging. Debugging `index.js` Debugger listening on [::]:5858
It opens UI in Chrome and the execution is stopped on
debugger
line. Set a watch variableprocess
in aWatch Expression
section. It is possible to examine it easily here. But only here, inWatch Expression
section.
- Now try to examine
process
variable in console. It doesn't work. You can type a variable, but hitting[Enter]
key doesn't revealprocess
variable. It just adds new lines:
What behavior is this? How to make it work?