Reputation: 1795
WEIRD HAPPENING.. I am unable to debug meteor app , BREAKPOINTS doesn't work in chrome(can see the server side sources thou).. I have already wasted 2 days over it ..
I have already tried Meteor: Debug on server side
Also tried similar options changing web-port and other options.
Also tried to reduce the node-inspector version, BUT breakpoints are not working for me..
any suggestions on how to debug this issue?
(Chrome browser, ubuntu, AMD machine, if that matters)
Upvotes: 2
Views: 408
Reputation: 7356
I have the same issue. The only workaround I've found is to put debugger;
statements in my code. Those are respected and treated as breakpoints which stop the server for Node Inspector.
Upvotes: 2
Reputation: 580
You are not alone. There is an issue posted to github about this, and it appears to be confirmed by several users.
I was able to get Node Inspector to work a while ago by downgrading to 1.10. It's not as nice as the new version but worked last time I used it. I honestly haven't needed it recently, but hopefully it'll still work.
Upvotes: 0
Reputation: 4376
you can try observatory or read this article, maybe it'll helps
Upvotes: 0