January 14, 2018
Triggering Azure Functions via NodeJS + Storage Queues
Recently I was working on a NodeJS project in Azure. I needed one Azure function to queue messages that another Azure function would be triggered by. Conveniently enough, Azure provides the triggering mechanism out of the box (through the concept of function binding). I was using Storage Queues to hold my messages. These are especially handy when the function being triggered happens to fail or crash and you want to avoid data loss.
...
Read more