DEV Community

Discussion on: How to debug Node.js in a Docker container

Collapse
 
aghost7 profile image
Jonathan Boudreau

You can also start the inspector if the process is already running with:

kill -SIGUSR1 $pid

Where $pid is the process identifier of the program you want to debug.