Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以将节点检查器与流星一起使用吗?
我尝试了“--debug”选项,并成功连接调试端口。
但是,无法访问我的代码。
执行“$DEV_BUNDLE/bin/node”“--debug”“$METEOR”“$@”
您可能已经像我一样反驳了同样的问题:
在 Linux 机器上,Meteor 脚本会产生两个进程:
当您运行时exec "$DEV_BUNDLE/bin/node" "--debug" "$METEOR" "$@",它会在调试模式下生成 process1,但 process2 仍以正常模式运行。这就是您看不到文件的原因。
exec "$DEV_BUNDLE/bin/node" "--debug" "$METEOR" "$@"
我只是运行常规流星脚本并发kill -s USR1送到 process2 然后你可以在节点检查器中看到你的文件
kill -s USR1