Subscribe

Deploying a Node app to Azure

✍️

Getting started with Azure App Service and deployments

25 Sep, 2020 · 3 min read

This article is not about building a Node.js app but about deploying your first app on Azure.

Azure is mighty, fast, and easier to start with than you think.

I recently made a sort-like application for a company and thought it would be good to show everyone how to go about hosting your first Node app on Azure.

Check my article on starting your first Node.js app. Or download this starter package on GitHub.

Registering on Azure

First, we need to get an Azure account, head to their register page, and follow instructions.

Once logged in, we see this.

Azure portal homepage

Now click on the App Services since we will use it.

We then get a prompt to start our free Trial. If we have not already done this, please follow these steps.

Azure free trial

Creating our App Service in Azure

Our Node app will be running on an App Service on Azure. So from the App Services screen, click on create new.

Create new App Service

An App Service is a container that will run our application, and it can run several runtimes options.

For our instance, we are using the following settings.

App Service settings

If you don’t have a resource group yet, you can click the new button on Resource Group.

We won’t be using any monitoring, so leave that to no.

App Service Monitoring

We also won’t use Tags, so click to the end and push Create!

App Service Create

There we go. We created an empty Azure App Service, which looks like this if we follow the URL.

Azure App Service default page

Uploading our Node app to Azure App Service

You can use my Starter project from GitHub.

So there are multiple ways of pushing our code to our new App Service.

Let’s start by exploring their Visual Studio code extension first!

You can download the Azure Visual Studio code extension here.

Once installed, open your project in Visual Studio Code.

You will now see this side icon. Click it and authenticate with your Azure account.

Visual Studio Code, Azure extension

We can right-click our newly created App Service and click Deploy to Web App.

Deploy web app

Now visit your Azure-created URL.

Azure hosted Node app

And we can even visit another route.

Azure Multi Pages

Azure Web App deployments

We can find our recent push deployment in the following section in Azure.

Azure Deployment Center

There we go. We created a Node app hosted on Azure Web Services.

You can find the entire project on my GitHub

Next time we will explore GitHub Deployments, Custom domains, and Storage options!

Check out this article to learn more about serverless containers.

Thank you for reading, and let’s connect!

Thank you for reading my blog. Feel free to subscribe to my email newsletter and connect on Facebook or Twitter

Spread the knowledge with fellow developers on Twitter
Tweet this tip
Powered by Webmentions - Learn more

Read next 📖

Node.js read and write from Azure Table Storage

2 Oct, 2020 · 9 min read

Node.js read and write from Azure Table Storage

GitHub automated deployments to Azure

26 Sep, 2020 · 3 min read

GitHub automated deployments to Azure

Join 2099 devs and subscribe to my newsletter