Azure Functions - Simple Website Demo

In this first demo post, I want to show how to create a simple website using Azure functions. This isn't anything fancy and, more than likely, you won't be attempting to do this in production, but it will still serve a purpose for us to get introduced to building functions. It is important to note that, when functions first became available, some people did, in fact, try to host their website(s) by using functions only. Why not? After all, they would only have to pay for the time the function actually ran. This could end up being a mere $1 or $2 each month. Microsoft got wind of this and put some mechanisms in place to prevent this sort of thing. We're going to sidestep some of these mechanisms by hard-coding some HTTP responses. Again, this isn't production-worthy.
Read more