ℹ️ Information: This guide walks you through installing the necessary components to run a Node.js application on Windows Server 2025, including Git for version control, Visual Studio Code as your IDE, and Node.js as the runtime environment.
Download Git from the official website:

Complete the Git installation wizard:

Verify Git installation:
git version

Download Visual Studio Code:

Complete the Visual Studio Code installation:

Download Node.js:

Complete the Node.js installation:

Verify Node.js and npm installation:
node -v
npm -v

💡 Pro Tip: Using the LTS (Long Term Support) version of Node.js is recommended for production applications to ensure stability and security updates.
Create a project directory:

Initialize and clone the repository:
git init
git clone https://github.com/First-Cloud-Journey/000004-EC2.git

Navigate to the project directory:
cd 000004-EC2
Check the contents of the repository
ls

🔒 Security Note: When working with Git repositories, ensure you’re not committing sensitive information such as database credentials or API keys. Use environment variables or configuration files that are excluded from version control.