How to add a new Node.Js Version to Plesk

Alex Zerling
1 min readJun 10, 2021

We recently needed to install a new version of Node.Js on our Server with Plesk installed.

There is a workaround from Plesk how to do it manually but it isn’t entirely complete.

From https://support.plesk.com/hc/en-us/articles/115001630174-Node-js-versions-available-in-Plesk:

  1. Connect to server via ssh
  2. # curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash
  3. Restart SSH connection
  4. # nvm install 14

--

--