I\'ve just upgraded my Chrome to 73.0.3683.75 (Linux) and now cannot get my dedicated Node debugger to actually debug a running instance. Even though I can see the \"Debugge
Update
This bug was fixed in chrome 74.0.3729.61 check here
you might use ndb which is tailored for node.js and also from GoogleChromeLabs.
install using
npm install -g ndb
Usage:
Use ndb instead of node command:
ndb server.js
# Alternatively, you can prepend `ndb`
ndb node server.js
Prepend ndb in front of any other binary:
ndb npm run unit
ndb mocha
ndb npx mocha
Launch ndb as a standalone application:
# cd to your project folder (with a package.json)
ndb .
# In Sources panel > "NPM Scripts" sidebar, click the selected "Run" button
if you are using nodemon:
ndb nodemon .
for further details see the project github repository
https://github.com/GoogleChromeLabs/ndb