concept signal in category javascript
appears as: signals, signals, signal

This is an excerpt from Manning's book Node.js in Practice.
It’s important to realize that signals can be sent from any process to any other, permissions notwithstanding. Your Node process can send another process a signal by using process.kill(pid, [signal])—in this case kill doesn’t mean the process will be “killed,” but simply sent a given signal. The method is named kill after the C standard library function in signal.h.
Figure 2.3 shows a broad overview of how signals originate from any process in an operating system and can be received by your Node processes.