【发布时间】:2015-02-23 10:37:44
【问题描述】:
我可以使用内置的 Meteor 运行配置在 Cloud9 IDE 中运行一个流星应用程序。但调试器不会遇到任何服务器端断点。我也尝试创建自己的运行配置,但也不起作用:
{
"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"
}
有人让调试器工作吗?
【问题讨论】:
-
你能让它工作吗??
标签: debugging meteor server-side cloud9-ide