Set up enviroment

  1. Using MobaXterm to SSH to EC2 instances
  2. Install Node Version Manager (nvm)
    curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash
    

nodejs

  1. Active nvm and install Nodejs v16
    . ~/.nvm/nvm.sh
    nvm install 16
    

nodejs

  1. Install Git
    sudo yum install git -y
    

git

  1. Verify packages installation
    npm -v
    node -v
    git -v 
    

verify

  1. Config your AWS CLI

verify

  1. Install Nodemon
    npm install --save-dev nodemon
    

verify