Install nodejs in Manjaro KDE plasma — 2020
Jun 11, 2020
Open de terminal Konsole, write the command
sudo pacman -S nvm
then you terminal
echo ‘source /usr/share/nvm/init-nvm.sh’ >> ~/.bashrc
exec $SHELL
To list all available versions for Node.js :
nvm ls-remote
we install the lts version
nvm install --lts
-Happy Day!