TIP

🔥 The Azure Developer Guide eBook is available here (opens new window).

💡 Learn more : Visual Studio Code Azure Extensions (opens new window).

📺 Watch the video : Top 5 VS Code extensions for Azure Developers (opens new window).

# Top 5 VS Code extensions for Azure developers

# Visual Studio Code for Azure Developers

Visual Studio Code (opens new window) (VS Code) is a lightweight code editor that works great for developing applications for any programming language. It is fast, it updates regularly and it is completely free! And you can extend its behavior by installing extensions. There are lots of extensions available, including extensions for Azure (opens new window).

In this post, we'll explore the top 5 VS Code extensions for Azure developers.

# Prerequisites

If you want to follow along, you'll need the following:

Installing an extension in VS Code is simple. Just click the extensions menu, search for the extension and click install on it.

Let's take a look at the top 5 Azure extensions for VS Code:

1: Azure Account

(Azure Account extension in VS Code)

The Azure Account (opens new window) extension has the least functionality of the extensions in the list, but you need it to work with the other extensions. You can use it to sign in and out of your Azure account and do things like select an Azure subscription. On top of that, the Azure Account extension also enables you to use the Azure Cloud Shell (opens new window), straight from the VS Code terminal. Just open the command palette (View > Command Palette...) and type Azure to see the commands to open the cloud shell.

(Azure commands in VS Code)

2. Azure App Service

(Azure App Service extension in VS Code)

The Azure App Service extension (opens new window) is incredibly useful for developers that work with Azure App Service (opens new window). Once you have installed the extension, you'll see an Azure menu in the menu bar of VS Code. Most other Azure extensions will show up in this same menu. From here, you can explore your Azure subscription and see all of the App Services that you have. You can even create a new one from here or deploy the app that you are working on to an App Service. This extension allows you to do almost anything that you need to do with your App Service. This includes starting and stopping it, streaming logs, remote debugging, manage app settings, see all the files in the app service and more. This is an essential extension.

(Do anything with your App Service in VS Code)

3. Azure Functions

(Azure Functions extension in VS Code)

Another extension is the Azure Functions extension (opens new window). This is similar to the App Service extension and it shows up in the Azure menu of VS Code. You use the Azure Functions extension to manage your Azure Functions (opens new window). You can use it to manage your existing Functions and to create new ones and deploy your app to a Function in the cloud. All from VS Code. You can start and stop Function Apps, manage their app settings, redeploy previous deployments, see the properties of bindings and more. If you use Azure Functions, you need this extension.

(Do anything with your Azure Functions in VS Code)

4. Azure Storage

(Azure Storage extension in VS Code)

A very useful VS Code extension is the Azure Storage extension (opens new window). When you've installed it, this will also show up in the Azure menu of VS Code. The Azure Storage extension lets you manage your Azure Storage (opens new window) accounts. You can go through your Blob (opens new window), Table (opens new window), Queue (opens new window) and File (opens new window) Storage and do most things that you need with them. You can upload data, create and delete blob containers and much more. And, you can also use this extension to manage the Blob Storage Static Website (opens new window) feature. With the extension, you can configure this feature and deploy your app to a static website in Blob Storage. That is incredible and very useful if, for instance, you are developing a Blazor WebAssembly (opens new window) application and want to host that as a static website.

(Deploy to static website in VS Code)

5. ARM Template Viewer

(ARM Template Viewer extension in VS Code)

The final extension that we will cover is the ARM Template Viewer (opens new window). This will render a visual representation of ARM templates (opens new window) that you are working on in VS Code. Having a visual overview of your template can be very useful as ARM templates tend to become difficult to oversee. Once you have installed the template, you can use it when you have a ARM template open by clicking on the eye symbol that will now appear in the top right of the editor bar, or you can go to the Command Palette (View > Command Palette...) and type in ARM Viewer. (Fans of shortcuts can use Ctrl+Alt+Q.) This will render a visual representation of the resources in the template and their relationships. What you see below is the representation of a the 101-vm-simple-windows (opens new window) template that creates a Virtual Machine (opens new window) in Azure. This creates many sub-services, like a virtual network card (opens new window), a Virtual Network (opens new window) and a public IP Address (opens new window). The extension was tested against over 900 templates in the Azure Quickstart Templates repository (opens new window) The extension allows you to toggle between resource type and name, change the layout by dragging the icons around, drill into a little more detail on the resources and export the final result to png files.

(ARM Template Viewer in action in VS Code)

# Conclusion

There are many Azure extensions (opens new window) for Visual Studio Code (opens new window). Each of them helps you to become a more productive Azure developer when you work in VS Code. Go and check them out!

Stay connected with me on various social platforms for daily software development news.

Twitter (opens new window) | Twitch (opens new window) | Instagram (opens new window) | YouTube (opens new window) | GitHub (opens new window) | Website (opens new window)