install latest nodejs on ubuntu
#! /bin/bash | |
curl -sL https://deb.nodesource.com/setup_15.x -o nodesource_setup.sh | |
sudo sh nodesource_setup.sh | |
sudo apt install nodejs | |
node -v | |
rm -f nodesource_setup.sh | |
sudo npm install --global yarn | |
sudo npm install -g @nestjs/cli |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment