From e949811e0a3657d20dbfa504471c6b2dfd02c300 Mon Sep 17 00:00:00 2001 From: Amaad Martin Date: Sat, 1 Aug 2026 01:48:53 -0700 Subject: [PATCH] docs: state an explicit minimum Node.js version in the README The Installation prerequisite read "a current Node.js LTS release", which is not mechanically checkable and silently asserts a higher floor every time a new LTS line opens. Replace it with the concrete floor the repository can actually justify. 20.19 is the smallest version that satisfies every engines.node constraint in the committed package-lock.json: 20.18.9 violates 6 of them (vite's ^20.19.0 || >=22.12.0 and five copies of eslint-visitor-keys' ^20.19.0 || ^22.13.0 || >=24), while 20.19.0 violates none. Nothing in the resolved tree requires a major above 20. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 414eed3f5..86be93343 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ web runtimes. ## 🚀 Installation -> **Prerequisite:** ADK for TypeScript requires a current Node.js LTS release. +> **Prerequisite:** ADK for TypeScript requires Node.js 20.19 or newer. ```bash npm install @google/adk