App Server Setup
1. Pre-Steps
$ sudo apt update [ Ensure package manager is up to date ]2. Setup NodeJS
$ cd ~
$ curl -sL https://deb.nodesource.com/setup_14.x -o nodesource_setup.sh [ Download Node V14 into users directory ]
$ sudo bash nodesource_setup.sh [ Run node setup script. Enter password for user. ]
$ sudo apt install nodejs [ Install node ]
$ node -v [ Check node version ]
$ npm -v [ Check npm version ]
$ sudo apt install build-essential [ Install node build essential - required for some npm packages ]