cd nodejs
URL_GS_BASE='https://storage.googleapis.com/chromium-nodejs'
-URL_HASH_NODE='https://chromium.googlesource.com/chromium/src/+/master/third_party/node/linux/node-linux-x64.tar.gz.sha1?format=TEXT'
-URL_HASH_MOD='https://chromium.googlesource.com/chromium/src/+/master/third_party/node/node_modules.tar.gz.sha1?format=TEXT'
-# TODO: Find source of truth for this.
-VER="8.9.1"
+URL_CHROMIUM_BASE='https://chromium.googlesource.com/chromium/src/+/master'
+URL_DEPS="${URL_CHROMIUM_BASE}/DEPS?format=TEXT"
+URL_HASH_NODE="${URL_CHROMIUM_BASE}/third_party/node/linux/node-linux-x64.tar.gz.sha1?format=TEXT"
+URL_HASH_MOD="${URL_CHROMIUM_BASE}/third_party/node/node_modules.tar.gz.sha1?format=TEXT"
+
+hash=$(curl -s "${URL_DEPS}" | base64 -d)
+VER=$(echo "${hash}" | grep -o 'chromium-nodejs/[0-9.]*' | sort -u | cut -d/ -f2)
hash=$(curl -s "${URL_HASH_NODE}" | base64 -d)
dir='node-linux-x64'