I am new to node.js, I want to install forever on ubuntu. But unfortunately it gives me an error. See in the Picture :
[1
I am new to node.js, I want to install forever on ubuntu. But unfortunately it gives me an error. See in the Picture :
[1
I ran into the same issue after following this tutorial to install NodeJS.
I was able to get it work by installing a more recent NodeJS.
Follow these steps:
sudo apt purge nodejs
sudo apt autoremove
sudo apt-get install curl
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
sudo apt-get install nodejs
sudo npm install forever -g