I’m trying to debug my server-side code, using meteor debug --debug-port 5000 --settings settings.json, which tells me my application is paused in my terminal and to go to http://localhost:7222/debug?port=5000.
Once there, I can unpause it through node-inspector no problem, however my console.log() and Meteor._debug() statements don’t print out into node-inspectors console. They do however show in my terminal, though they’re objects so I simply see:
Run your meteor app in debug mode: env NODE_OPTIONS='--debug-brk' meteor --settings settings.json
Finally in a new terminal window run: node-inspector and head to the URL it gives you. Both --debug and node-inspector should default to port 5858, they do have override flags if required.