Installare NodeJs
Imparare a farla fuori dal browser
NodeJs esegue codice JavaScript fuori dal browser.
$ node -v
v15.7.0
$ npm -v
7.4.3
Installare su Windows
Scaricare il file dal sito ufficiale.
Installare su Linux
sudo apt update
sudo apt -y upgrade
sudo apt install nodejs npm
Installare su Mac
Installare brew se non presente
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Installare xcode se non presente
xcode-select --install
Installare node
brew install node