作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 Windows 上使用 git bash 来运行命令。
In the doc在调试时他们说如下:
If a process was started without --inspect, signal it with SIGUSR1 to activate the debugger and print the connection URL.
我试着这样做:
$ node index.js
server is listening on 3000
$ ps
PID COMMAND
16348 /c/Program Files/nodejs/node
$ kill -s SIGUSR1 16348
但是随后进程停止而不是打印连接 URL:
$ node index.js
server is listening on 3000
User defined signal 1
最佳答案
Windows 不支持发送信号,但 Node.js 提供了一些模拟。不幸的是,它没有扩展到 SIGUSR1
。
linked documentation原始问题中的已更新以指定 SIGUSR1
仅适用于 Linux 和 OS X。(尽管我现在正在打开拉取请求以将其更改为说它不适用于 Windows ,而不是它在 Linux 和 OS X 上工作。我很确定它会工作,例如,在 AIX 和 SmartOS 中。代码库中甚至可能有一个测试。)
关于javascript - 如何在 Windows 上将 SIGUSR1 与 node.js 一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45976065/
我是一名优秀的程序员,十分优秀!