Meteor JS running in debugger?

I am curious if anyone has a solution to launch a meteor in the debugger. I have some experience with a normal node in a debugger, it uses JetBrains web buffers, however, it does not seem to support a meteorite (as far as I can tell). If anyone has a solution, he would appreciate any information. It seems that ultimately this should be possible for the meteor to become a long-term viable platform.

+5
source share
1 answer

It seems that running meteor script does not support the debugging option at the moment, but you can fix it yourself:

Open the launch of the meteor script in a text editor (use which meteorto find it)

( $NODE_DEBUG):

exec "$DEV_BUNDLE/bin/node" $NODE_DEBUG "$METEOR" "$@"

:

NODE_DEBUG=--debug meteor

+4

All Articles