In this chapter, we will learn how to write serverless applications that will run on Microsoft Azure using Node.js. We will learn about creating an HTTP trigger for Azure Functions. We will also learn about Azure Functions Core Tools so that you are able to create Azure Functions locally on your workstation and test the Azure Functions locally before we publish them to your Azure subscription.
There are multiple ways of creating serverless apps on the Azure Functions platform; I will cover two of those methods as part of this chapter:
- Azure portal
- We will learn how to create an Azure Function App
- We will learn how to create an Azure Function
- We will learn how to create an HTTP trigger for the function
- We will test the Azure Function through the Azure portal and also using Postman
- We will configure the function through the Azure portal...