Going Serverless

Over the last few years as technology has improved and the cloud providers built out more and more infrastructure, serverless began to grow. Serverless doesn't mean there is no server. What serverless means is that you don'…

Azure Functions Routes and Proxies

Azure Function Proxies allow you to create a single unifed API surface for your Azure functions. The Microsoft Azure stack allows you to use different technologies so you can use the right tool for the job. Azure functions can also…

Azure Functions Routing

With azure functions we can customise the end point that our Azure function will respond to. By default the HTTP trigger will use the name of the function as the URL. So if we want to customise that we have…