From d77eb0c05336b63446075fad6f808800ccff09cb Mon Sep 17 00:00:00 2001 From: Kevyn Bruyere Date: Mon, 24 Aug 2020 14:40:36 +0200 Subject: [PATCH] Add missing `zombie` word in 8.2 BP --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fa0b6528..894828f8 100644 --- a/README.md +++ b/README.md @@ -1114,7 +1114,7 @@ CMD [ "node", "dist/app.js" ] ## ![✔] 8.2. Bootstrap using 'node' command, avoid npm start -**TL;DR:** use `CMD ['node','server.js']` to start your app, avoid using npm scripts which don't pass OS signals to the code. This prevents problems with child-process, signal handling, graceful shutdown and having processes. +**TL;DR:** use `CMD ['node','server.js']` to start your app, avoid using npm scripts which don't pass OS signals to the code. This prevents problems with child-process, signal handling, graceful shutdown and having zombie processes. **Otherwise:** When no signals are passed, your code will never be notified about shutdowns. Without this, it will lose its chance to close properly possibly losing current requests and/or data.