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.
我用 komodo IDE 创建了一个项目:
我创建调试配置:
程序启动但不在断点处停止:
我究竟做错了什么?是否有任何分步信息?谢谢。
nodejs 中的调试器永远不会在这样的单行应用程序上停止。当我有这样的几行时,它就会起作用。单行应用退出太快,调试器无法连接。这显然是 nodejs 中的一个错误。
Node.js 仅在您以调试模式运行时在断点处中断。
要么node debug script.js要么node --debug-brk script.js。
node debug script.js
node --debug-brk script.js
在这里,您需要告诉 IDE 是否需要添加命令行参数来运行脚本。