I've got a simple Meteor app running on a Nitrous box. I'd like to be able to use node-inspector
for server-side debugging (as described here), but I'm unable to get to the console.
My Meteor app is running locally on the box at http://0.0.0.0:3000/
, and I can view it in Chrome by following the guide here. When I then run node-inspector
, I get this message:
Node Inspector v0.8.3
Visit http://127.0.0.1:8080/debug?port=5858 to start debugging.
How can I get to this address? I've tried:
- Navigating to
https://example-name.example-region.nitrous.io:8080/debug?port=5858
- Running:
node-inspector --web-host 0.0.0.0
- Running:
node-inspector --web-host https://example-name.example-region.nitrous.io
Thoughts? Is there a way I can get to this console?