I can get the meteor app running on the Cloud9 IDE using the built-in Meteor launch configuration. But the debugger does not fall on server-side breakpoints. I also tried to create my own startup script, but it doesn't work:
{
"cmd": [
"bash",
"--login",
"-c",
"meteor ${debug? run --debug-port=15454} --port $IP:$PORT"
],
"debugger": "v8",
"debugport": 15454,
"info": "Your code is running at \\033[01;34m$url\\033[00m.\n\\033[01;31mImportant:\\033[00m use \\033[01;32mprocess.env.PORT\\033[00m as the port and \\033[01;32mprocess.env.IP\\033[00m as the host in your scripts!\n"
}
Does anyone get a debugger working?
source
share