Explore Azure Functions CLI Sample Projects
Discover practical examples of how to use the Azure Functions CLI to create, develop, and manage your serverless applications. These samples cover a wide range of scenarios and common patterns.
HTTP Trigger with Input Binding
A basic Azure Function triggered by an HTTP request, demonstrating how to receive and process data from a request body using an input binding for Azure Table Storage.
View SampleTimer Trigger with Output Binding
This sample shows a function that runs on a schedule using a Timer Trigger and writes output to an Azure Queue using an output binding.
View SampleCosmos DB Change Feed Trigger
Learn how to process changes in an Azure Cosmos DB container using the Change Feed trigger. This function reacts to data modifications in real-time.
View SampleBlob Storage Trigger with Processing
A function that automatically runs when a new blob is uploaded to an Azure Blob Storage container, performing custom processing on the file.
View SampleService Bus Topic Trigger
Process messages from an Azure Service Bus topic. This sample demonstrates asynchronous processing of messages published to a topic.
View SampleDurable Functions - State Management
An introduction to Azure Durable Functions, showcasing how to orchestrate complex workflows and manage state across multiple function executions.
View Sample