nodejs (nvm/npm) rework

master
Anthony Axenov 2022-12-21 22:07:05 +08:00
parent 0aac460d63
commit f89b2d946d
Signed by: anthony
GPG Key ID: EA9EC32FF7CCD4EC
1 changed files with 6 additions and 10 deletions

View File

@ -11,19 +11,15 @@ installed() {
command -v "$1" >/dev/null 2>&1
}
# sudo apt install -y --autoremove nodejs npm
installed "nvm" && sudo apt install -y --autoremove nodejs npm nvm
if !installed "nvm"; then
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/master/install.sh | bash
fi
! installed "nvm" && wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/master/install.sh | bash
if [ $(nvm current) == 'system' ]; then
echo "WARNING: You already have node installed - removing to install actual version"
sudo apt remove -y --autoremove nodejs npm
else
nvm install-latest-npm
fi
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
nvm install-latest-npm
nvm install node
nvm use node
installed "node" && nvm current