Setup Linux packages
Misc stuff
sudo apt-get install build-essential nginx htop git curl ranger
Postgres
sudo apt-get install postgresql postgresql-contrib
Nodejs nvm
https://github.com/nvm-sh/nvmΒ
# Install
nvm install node # "node" is an alias for the latest version
nvm install 14.7.0 # or 16.3.0, 12.22.1, etc
# Use specific version
nvm use node
nvm use 16
nvm use 14
Last updated on