sudo apt update && sudo apt dist-upgrade -y
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash
source ~/.bashrc
--> check if it was loaded correctly
command -v nvm
nvm install node --lst
nvm install-latest-npm
--> ensure you have a GitHub repo, with README.MD and .gitignore = NODE
--> clone down repo and cd into it
npm init
mkdir src
touch ./src/index.js
--> if you are going to have user input, install the following
npm install prompt-sync --save-dev
node ./src/index.js