gpt4 book ai didi

node.js - 在 Windows 上调试已运行的 node.js 进程

转载 作者:太空宇宙 更新时间:2023-11-04 02:35:51 24 4
gpt4 key购买 nike

在 Linux/Unix 平台上,可以通过向 Node.js 进程发送 USR1 信号将其置于 Debug模式。 Windows 没有相同的信号模型,那么有没有办法在 Windows 上将已经运行的 Node.js 进程置于 Debug模式? (换句话说,我想避免必须重新启动进程并向其传递调试标志)

最佳答案

您是否尝试过编写 Node 脚本并使用process.kill(pid, 'SIGUSR1')?我不知道这是否能在 Windows 上按预期工作,但值得一试。

Note that Windows does not support sending Signals, but node offers some emulation with process.kill(), and child_process.kill(): - Sending signal 0 can be used to search for the existence of a process - Sending SIGINT, SIGTERM, and SIGKILL cause the unconditional exit of the target process.

http://nodejs.org/api/process.html#process_signal_events

关于node.js - 在 Windows 上调试已运行的 node.js 进程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22413940/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com