Install Nodejs on Windows instance

Install Nodejs on Microsoft Windows Server 2022 instance

  1. To support running the application we install Git

    • Select Download

create vpc for linux instance

  1. Complete installation of Git

create vpc for linux instance

  1. Test install Git successful
git version

create vpc for linux instance

  1. Also, we need to download IDE, in this lab use Visual Studio Code

create vpc for linux instance

create vpc for linux instance

  1. Install Nodejs on Windows instance.
  • Select Windows Installer

create vpc for linux instance

  1. Complete the installation of Nodejs on the Windows instance.

create vpc for linux instance

  1. Check Nodejs installed successfully
node -v
npm -v

create vpc for linux instance

  1. Create AWSManagement folder to store code repository

create vpc for linux instance

  1. Use the git init command to initialize a local repo. Then use git clone to clone the repository code
git init
git clone https://github.com/First-Cloud-Journey/000004-EC2.git

create vpc for linux instance

  1. Move to the 000004-EC2 folder
cd 000004-EC2

create vpc for linux instance