I am debugging locally by running node --debug and using the node-inspector . The node inspector should work in the background, then I indicate that my browser (not all browsers work, Chrome does) before http://127.0.0.1:8080/debug?port=5858 for debugging.
The problem is that I cannot start the production server locally (missing private key files that do not belong to the dev device), which makes it very difficult to debug certain production problems, even if I am ready to crack the production machine. Is this possible with Node Inspector?
source share