Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

I lost the Node.js debug button in chrome

The button for nodejs debug is lost :c

Before it was:

enter image description here

After:

enter image description here

Where is the button?

P.S. node app is running and displayed in chrome://inspect/

like image 564
Alexey Vodolazhchenko Avatar asked May 03 '18 10:05

Alexey Vodolazhchenko


People also ask

How to debug Node JS in Chrome Dev Tools?

How To Debug Node.js with the Built-In Debugger and Chrome DevTools 1 Prerequisites. You will need Node.js installed in your development environment. ... 2 Step 1 — Using Watchers with the Node.js Debugger. ... 3 Step 2 — Using Breakpoints With the Node.js Debugger. ... 4 Step 3 — Debugging Node.js with Chrome DevTools. ...

How do you debug a node Program?

When using a debugger, we step through code by telling the debugger to go to the next line that the program will execute. Node.js allows the following commands to use a debugger: c or cont: Continue execution to the next breakpoint or to the end of the program.

How do I inspect my node app with Google Chrome DevTools?

To inspect your Node.js app with Google Chrome DevTools, you have to make it a remote target. This can be done by using the --inspect flag when starting the node process:

What is debug debug in Chrome DevTools?

Debugging is the task to identify and remove errors from software applications, and is more than just printing out values in your code. This post describes how to efficiently debug Node.js programs using the latest Google Chrome DevTools. Why console.log is not the best option?


1 Answers

This seems to be a Chrome issue. Chrome 66 (current 'stable') seems to be broken, but not the upcoming Chrome 67 or the 68.

Wait for 67 stable..

https://github.com/nodejs/node/issues/20590

like image 105
Alexey Vodolazhchenko Avatar answered Sep 27 '22 23:09

Alexey Vodolazhchenko