Install Node.js

There are several good ways to install Node.js on your computer. You may wish to refer to https://nodejs.org/en/download/package-manager. I recommend maintaning the software by nvm, the Node Version Manager. This entails installing that first.

Linux
Use your package manager, eg (depending on your distribution)
yay -S nvm
Mac OS/X
Start a terminal end enter
brew install nvm
MS Windows
Start a terminal as administrator and enter
choco install nvm

Follow this in any operating system by the following command issued in a non administrator terminal. This command incidentally also gets the latest version, if used at a later date.

nvm install node

This command will install Node.js and npm the Node Package Manager. If you one day may decide to develop node software as another user, just repeat this last command from that users home directory.