Meteor: the best debugging tool?

I am learning how to use Meteor and I am starting from a basic / intermediate knowledge of python / django.

What is the best debugging tool in Meteor, perhaps one that can let you pause code in the middle of execution and let you pass? I think something like ipdb in python ...

+4
source share
1 answer

On the client, use the browser developer tools to set breakpoints and execute code.

On the server, since Meteor runs on node.js, you can use the node-inspector , which connects to your browser developer tools. See Meteor: Server-Side Debugging for more information on how to get node-sector working.

+2
source

All Articles