This used to be runnable but recently I'm encounter the following issue.
By running the following command:
node --inspect-brk ./node_modules/.bin/jscodeshift mod.js file.
I am encountering this problem
Debugger listening on ws://127.0.0.1:9229/7e57a2d3-0885-44b3-b51e-b47dc8417d87
For help, see: https://nodejs.org/en/docs/inspector
Debugger attached.
Processing 1 files...
Spawning 1 workers...
Sending 1 files to free worker...
Starting inspector on 127.0.0.1:9229 failed: address already in use
All done.
Results:
0 errors
0 unmodified
0 skipped
0 ok
Time elapsed: 0.035seconds
The reason inspect mode doesn't work is because another process (e.g. another instance of the inspector) is already using the default port (
9229
), so they're conflicting. Either use a different port for the inspector or kill the process that's currently using the port.If you use a different port, you'll be able to start the inspector. Just pass the desired port-number (e.g.
39479
) to--inspect-brk
.Your example:
node --inspect-brk ./node_modules/.bin/jscodeshift mod.js file.
Could for example be:
node --inspect-brk=39479 ./node_modules/.bin/jscodeshift mod.js file.
DANGER: If you need the port 9229, you can kill the process/inspector that's currently using that port, but if you don't know what that process is doing you could damage things:
lsof -i TCP:9229 | grep LISTEN | awk '{print $2}' | xargs kill -9