I'm working on a Node.js project and it was working perfectly (friday around 3pm). I opened the same project this morning and the debugger of chrome isn't working anymore with my node --inspect command.
node --inspect server.js
It tells me it created a websocket where I can connect to. I can connect manualy with this websocket by using the standard ws url by chrome:
chrome-devtools://devtools/bundled/inspector.html?experiments=true&v8only=true&ws=127.0.0.1:9229/{{YOUR_KEY}}
But this means I can't connect when I'm reloading my app.
It is also not showing on the chrome://inspect#devices
page
Im running the latest version of node (10.15). I've tested this on canary and the chromium browser. Canary has the same problem but on chromium it seems to be working fine.
Did chrome release a new update? How can I solve this problem and open my debugger!?
Edit
I can open the node develop tools now but it doesn't respond with my code. It looks like it is trying to connect but then fails and tries to reconnect again. The dev tools is also creating a session with my express app every second or so. The chromium way is only working for a single app and the websocket doesn't reconnect, this means I have to open my app every time I make a change in my code.