How can I do Routing in Azure Functions?
I know that I can use url parameters like this: "myfunction?p=one&p2=two" and in code that becomes request.query.p = "one"; but I would prefer to get it like this (express routing style): "myfunction/:myvalue" and use this url: /myfunction/nine which becomes this in code: request.params.myvalue = "nine" but I can't seem to find how to configure a route path like that in Azure Functions, any ideas or docs? We've shipped route support for HTTP Triggers in Azure Functions. You can now add a route property which follows ASP.NET Web API route naming syntax. (You can set it directly via the Function