I used to install nodejs12 on Raspbian by simply adding the repo and using apt:
sudo su
curl -sL https://deb.nodesource.com/setup_12.x | bash -
apt install -y nodejs
But with a fresh install of Raspbian Buster I just got this message when adding the 12.x repos:
You appear to be running on ARMv6 hardware. Unfortunately this is not currently supported by the NodeSource Linux distributions. Please use the 'linux-armv6l' binary tarballs available directly from nodejs.org for Node.js 4 and later.
So I went over to the Nodejs Downloads page, and there I found that only ARMv7 and ARMv8 builds are available, where my Raspi zero is a ARMv6.
I can of course build from source, but if possible I want to avoid doing that. Does anybody know what the current way of installing Nodejs 12 on Raspbian is?