diff --git a/doc/advanced/hacking-on-gitea.en-us.md b/doc/advanced/hacking-on-gitea.en-us.md
index 1e792d39..902bf847 100644
--- a/doc/advanced/hacking-on-gitea.en-us.md
+++ b/doc/advanced/hacking-on-gitea.en-us.md
@@ -25,7 +25,7 @@ environment variable and to add the go bin directory or directories
Next, [install Node.js with npm](https://nodejs.org/en/download/) which is
required to build the JavaScript and CSS files. The minimum supported Node.js
-version is 10 and the latest LTS version is recommended.
+version is {{< min-node-version >}} and the latest LTS version is recommended.
You will also need make.
(See here how to get Make)
diff --git a/doc/installation/from-source.en-us.md b/doc/installation/from-source.en-us.md
index 3f767308..2089a5df 100644
--- a/doc/installation/from-source.en-us.md
+++ b/doc/installation/from-source.en-us.md
@@ -23,7 +23,7 @@ environment variable and to add the go bin directory or directories
Next, [install Node.js with npm](https://nodejs.org/en/download/) which is
required to build the JavaScript and CSS files. The minimum supported Node.js
-version is 10 and the latest LTS version is recommended.
+version is {{< min-node-version >}} and the latest LTS version is recommended.
**Note**: When executing make tasks that require external tools, like
`make misspell-check`, Gitea will automatically download and build these as
@@ -82,7 +82,7 @@ git checkout v{{< version >}} # or git checkout pr-xyz
To build from source, the following programs must be present on the system:
- `go` {{< min-go-version >}} or higher, see [here](https://golang.org/dl/)
-- `node` 10.0.0 or higher with `npm`, see [here](https://nodejs.org/en/download/)
+- `node` {{< min-node-version >}} or higher with `npm`, see [here](https://nodejs.org/en/download/)
- `make`, see here
Various [make tasks](https://github.com/go-gitea/gitea/blob/master/Makefile)
@@ -117,7 +117,7 @@ TAGS="bindata sqlite sqlite_unlock_notify" make build
The `build` target is split into two sub-targets:
- `make backend` which requires [Go {{< min-go-version >}}](https://golang.org/dl/) or greater.
-- `make frontend` which requires [Node.js 10.0.0](https://nodejs.org/en/download/) or greater.
+- `make frontend` which requires [Node.js {{< min-node-version >}}](https://nodejs.org/en/download/) or greater.
If pre-built frontend files are present it is possible to only build the backend:
diff --git a/doc/installation/from-source.zh-cn.md b/doc/installation/from-source.zh-cn.md
index dc6cae15..cbae5218 100644
--- a/doc/installation/from-source.zh-cn.md
+++ b/doc/installation/from-source.zh-cn.md
@@ -47,7 +47,7 @@ git checkout v{{< version >}}
要从源代码进行编译,以下依赖程序必须事先安装好:
- `go` {{< min-go-version >}} 或以上版本, 详见 [here](https://golang.org/dl/)
-- `node` 10.0.0 或以上版本,并且安装 `npm`, 详见 [here](https://nodejs.org/en/download/)
+- `node` {{< min-node-version >}} 或以上版本,并且安装 `npm`, 详见 [here](https://nodejs.org/en/download/)
- `make`, 详见 这里
各种可用的 [make 任务](https://github.com/go-gitea/gitea/blob/master/Makefile)