paint-brush
Hosting Your Node JS Backend Application with AWS EC2 New UI (2024 Edition)by@suylakshmanan
New Story

Hosting Your Node JS Backend Application with AWS EC2 New UI (2024 Edition)

by Suyambukani LakshmananJune 28th, 2024
Read on Terminal Reader
tldt arrow

Too Long; Didn't Read

Hosting Node.js applications on AWS EC2 (Elastic Compute Cloud) provides developers with flexibility, scalability, and control over their backend infrastructure. This guide outlines the steps to deploy a node.js backend application on an EC2 instance, ensuring efficient management and optimal performance.
featured image - Hosting Your Node JS Backend Application with AWS EC2 New UI (2024 Edition)
Suyambukani Lakshmanan HackerNoon profile picture

Hosting Node.js applications on AWS EC2 (Elastic Compute Cloud) provides developers with flexibility, scalability, and control over their backend infrastructure. This guide outlines the steps to deploy a Node.js backend application on an EC2 instance, ensuring efficient management and optimal performance.


Prerequisites Before proceeding, ensure you have the following: • An AWS account with access to EC2 • Node.js application code ready for deployment


Step 1: Launching an EC2 Instance

  1. Sign in to AWS Management Console: o Navigate to EC2 Dashboard.

o Click on "Launch Instance" to start the instance creation process.

  1. Choose an Amazon Machine Image (AMI): o Select a suitable AMI (Amazon Linux, Ubuntu, etc.) based on your application requirements.

    AMI Selection3.Choose Instance Type:

    1. o Select an instance type (e.g., t2.micro for low traffic, or choose based on your performance needs).

Instance type selection

  1. Key pair (login): o Create or select an existing key pair to securely connect to your instance.

    Generating new key file

    5. Configure Instance:

    o Configure instance details such as network settings, storage, and security groups.

Network settings

Volume configuration

  1. Add Tags (Optional): o Assign tags for easier instance management.

  2. Configure Security Group: o Create or select an existing security group to define inbound and outbound rules. Ensure HTTP (port 80) and HTTPS (port 443) are open for web traffic.

    Security Group setup

    8. Review and Launch:

    o Review your instance configuration and launch the instance.

Instance creation success

Instance Running

Step 2: Connecting to Your EC2 Instance

  1. SSH into the Instance: o Use SSH to connect to your instance using the key pair you downloaded during instance launch. Command 1: “ssh -i path_to_your_key_from_local_machine.pem ec2-user@your_ec2_instance_public_dns

    The PEM file won't be accessible for reading by default. You need to grant read permissions.

Get your EC2 instance public DNS


Connected your server thru terminal


Replace path_to_your_key.pem with the path to your private key file and your_ec2_instance_public_dns with your EC2 instance's public DNS. Now, your terminal is connected to your AWS EC2 instance.

  1. Install Node.js and NPM: • Update the package index and install Node.js and npm.

    Command 2: sudo apt-get update -y Command 3: sudo apt-get install nodejs npm -y

Check the node and npm versions after installed


  1. Copy Your Application Code from Git or thru FTP like FileZilla:

    Node JS code to deploy


    3a. Thru filezilla:


3b. Thru Git:


Step 3: Running Your Node.js Application

  1. Install Dependencies: o Navigate to your application directory on the EC2 instance and install dependencies using npm. Command 4: cd /path_on_ec2/your_app Command 5: npm install or npm i


    1. Start Your Application: • Use node or a process manager like pm2 to start your Node.js application. Command 6: node app.js <or> pm2 start app.js <or> pm2 start index.js


  1. Access Your Application: • Open a web browser and navigate to your EC2 instance's public IP address or DNS name to access your Node.js application.

    Node JSApplication deployed


All done! Node JS backend application is deployed on the cloud.


Step 4: Ensuring Scalability and High Availability

  1. Auto Scaling: o Configure Auto Scaling groups to automatically add or remove instances based on traffic patterns.

  2. Load Balancing: o Use Elastic Load Balancing (ELB) to distribute incoming traffic across multiple EC2 instances for improved performance and fault tolerance.


Hosting a Node.js backend application on AWS EC2 provides a robust foundation for scalable and reliable web services. By following these steps, you can deploy and manage your application efficiently, leveraging AWS's cloud infrastructure to meet your application's growing demands.


Reference: AWS Documentation: Amazon EC2 Documentation