diff --git a/docs/devel/developer-setup.rst b/docs/devel/developer-setup.rst
index 1ddba215590a5fcb965ed4f49db169a31db1fabf..5175e557a4d912ae189be441bd48d5a7374e1220 100644
--- a/docs/devel/developer-setup.rst
+++ b/docs/devel/developer-setup.rst
@@ -50,11 +50,11 @@ don't need them started globally (this will save you some RAM)::
   sudo systemctl disable --now cassandra postgresql
 
 If you intend to hack on the frontend part of |swh| Web Applications, you will also
-need to have ``nodejs >= 14`` in your development environment. If the version in your
-Debian-based distribution is lower, you can install node 14 using these commands::
+need to have ``nodejs >= 18`` in your development environment. If the version in your
+Debian-based distribution is lower, you can install node 18 using these commands::
 
   sudo wget https://deb.nodesource.com/gpgkey/nodesource.gpg.key -O /etc/apt/trusted.gpg.d/nodesource.asc
-  echo "deb https://deb.nodesource.com/node_14.x $(lsb_release -cs) main" | sudo tee -a /etc/apt/sources.list.d/nodesource.list
+  echo "deb https://deb.nodesource.com/node_18.x $(lsb_release -cs) main" | sudo tee -a /etc/apt/sources.list.d/nodesource.list
   sudo apt update
   sudo apt install nodejs