diff --git a/docs/usage/node.md b/docs/usage/node.md
index 338b37a485a50891a3bc9008816757ad17dbac1a..b7539087b6e154360b5612a21901e697340cd710 100644
--- a/docs/usage/node.md
+++ b/docs/usage/node.md
@@ -24,12 +24,12 @@ When `binarySource=docker`, such as in the hosted WhiteSource Renovate App, Reno
 To control which version or constraint is installed, you should use the `engines.npm` property in your `package.json` file.
 Renovate bot will then use that version constraint for npm when it creates a pull request.
 
-For example, if you want to use at least npm `6.14.11` and also allow newer versions of npm in the `6.x` range, you would put this in your `package.json` file:
+For example, if you want to use at least npm `8.1.0` and also allow newer versions of npm in the `8.x` range, you would put this in your `package.json` file:
 
 ```json
 {
   "engines": {
-    "npm": "^6.14.11"
+    "npm": "^8.1.0"
   }
 }
 ```