I wrote a simple script:
var a = 7;
var b = a + 2;
var c = b;
I put the above script in a file foo.js.
Now I open Git Bash in the same with foo.js folder and run the following command:
node --inspect foo.js
Here is what I am getting:
$ node --inspect foo.js
Debugger listening on ws://127.0.0.1:9229/185f8862-17db-44d5-aff0-03c8e6fd50df
For help, see: https://nodejs.org/en/docs/inspector
Then I go to chrome://inspect/, then to Open dedicated DevTools for Node.
I do not see my code for run or debug. What am I missing here?
Thank you.
