Installing Node.js on the Server
Install Node.js (using NodeSource)
curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash -
sudo apt install -y nodejsVerify the Installation
node -v
npm -vLast updated