--- Order: 1 Area: appservicetools TOCTitle: Getting started PageTitle: Azure App Services with Visual Studio Code MetaDescription: Node.js Deployment to Azure App Services with Visual Studio Code DateApproved: 12/18/2017 --- # Deploy to Azure using App Service This tutorial walks you through deploying a Node.js application to Azure using the [Azure App Service](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-azureappservice) extension. You'll be able to deploy to Azure on Linux in a matter of minutes from Visual Studio Code. ## Prerequisites If you don't have an Azure account, [sign up today](https://azure.microsoft.com/en-us/free/?utm_source=campaign&utm_campaign=vscode-tutorial-app-service-extension&mktingSource=vscode-tutorial-app-service-extension) for a free 30-day account with $200 in Azure credits to try out any combination of services. You need [Visual Studio Code](https://code.visualstudio.com/) installed along with [Node.js and npm](https://nodejs.org/en/download), the Node.js package manager. ## Install the extension The Azure App Service extension is used to create, manage, and deploy Linux Web Apps on the Azure PaaS. > Install the Azure App Service extension ## Sign in Once the extension is installed, log into your Azure account - in the Activity Bar, click on the Azure logo to show the **AZURE APP SERVICE** explorer. Click **Sign in to Azure...** and follow the instructions. ![sign in to Azure](images/app-service-extension/sign-in.png) ## Troubleshooting If you see the error **"Cannot find subscription with name [subscription ID]"**, this may be because you are behind a proxy and unable to reach the Azure API. Configure `HTTP_PROXY` and `HTTPS_PROXY` environment variables with your proxy information in your terminal using `export`. ```sh export HTTPS_PROXY=https://username:password@proxy:8080 export HTTP_PROXY=http://username:password@proxy:8080 ``` If setting the environment variables doesn't correct the issue, contact us by clicking the **I ran into an issue** button below. ## Prerequisite check Before we continue, ensure that you have all the prerequisites installed and configured. In VS Code, you should see your Azure email address in the Status Bar and your subscription in the **AZURE APP SERVICE** explorer. ---- I've installed the Azure Extension I ran into an issue