You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+3-2
Original file line number
Diff line number
Diff line change
@@ -292,9 +292,10 @@ nodemon sends a kill signal to your application when it sees a file update. If y
292
292
The following example will listen once for the `SIGUSR2` signal (used by nodemon to restart), run the clean up process and then kill itself for nodemon to continue control:
293
293
294
294
```js
295
-
process.once('SIGUSR2', function () {
295
+
// important to use `on` and not `once` as nodemon can re-send the kill signal
0 commit comments