DEV Community

Amadi Chimeremma
Amadi Chimeremma

Posted on

A Step-by-Step Guide to Linking and Deploying a Node.js Web App to Azure App Services and Connecting it to an SQL Database

Introduction:
In today's digital era, deploying web applications to the cloud has become increasingly popular due to its scalability and ease of management. Azure App Services, coupled with Node.js and an SQL database, offers a powerful combination for hosting and running your web applications. In this blog, I will walk you through the process of linking and deploying a Node.js web app to Azure App Services and connecting it to an SQL database.

Prerequisites:
Before we begin, make sure you have the following prerequisites in place:

An Azure account: Sign up for an Azure account at click.
Node.js and npm: Install Node.js and npm on your local machine. You can download them from click here.
Azure CLI: Install Azure CLI on your machine. You can find installation instructions at https://docs.microsoft.com/cli/azure/install-azure-cli.

Step 1: Create an Azure App Service

Log in to the Azure portal click here using your Azure account credentials.
Click on "Create a resource" and search for "App Service."
Select "Web App" from the search results and click "Create."
Provide a unique name for your app, choose your preferred subscription, resource group, and operating system.
Configure the runtime stack to Node.js and choose the desired version.
Click "Review + Create" and then "Create" to provision the App Service.

Image description

Image description

Image description

Step 2: Set up your Node.js Web App

Open a terminal or command prompt and navigate to your project's directory.
Initialize a new Node.js project by running the command: npm start.
Install the necessary dependencies for your web app using npm run build.
Test your application locally using the command: npm run start. I am using windows, so this will open on local host 3000.

Image description

Image description

Image description

Image description

Step 3: Connect to an SQL Database

In the Azure portal, go to your App Service's "Overview" page.
Under "Settings," click on "Configuration."
Add a new connection string by clicking on the "New connection string" button.
Enter a name for the connection string and select the SQL database provider.
Provide the necessary details, including the server name, database name, username, and password.
Click "OK" to save the connection string.

Image description

Image description

Image description

Image description

Step 4: Deploy the Node.js Web App to Azure

In the Azure portal, navigate to your App Service's "Overview" page.
Under "Deployment," select "Deployment Center."
Choose the deployment method that suits your project (e.g., Local Git, GitHub, Bitbucket, etc.).
Follow the instructions to link your repository and configure the deployment settings.
Once configured, trigger a deployment to deploy your Node.js web app to Azure.

Image description

Image description

Image description
Step 5: Verify and Test

Once the deployment is complete, navigate to your Azure App Service's URL.
Test your web app's functionality and ensure that it connects to the SQL database successfully.
Monitor the application's logs and Azure portal's metrics to ensure everything is running smoothly.

Image description

Image description

Conclusion:
In Summary, we have explored the process of linking and deploying a Node.js web app to Azure App Services and connecting it to an SQL database. By following these steps, you can take advantage of Azure's robust infrastructure and scalability, allowing you to focus on building and maintaining your application without worrying about the underlying infrastructure.

Top comments (0)