azure-functions

Solid

Build serverless applications with Azure Functions. Create HTTP triggers, queue processors, timer functions, and durable orchestrations. Use for event-driven computing, API backends, and serverless microservices on Azure.

DevOps & Infrastructure 364 stars 68 forks Updated today MIT

Install

View on GitHub

Quality Score: 89/100

Stars 20%
85
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Azure Functions Skill Build serverless applications with Azure Functions for event-driven computing. ## Triggers Use this skill when you see: - azure functions, function app, serverless azure - http trigger, timer trigger, queue trigger - durable functions, orchestration - function binding, function.json ## Instructions ### Create Function App ```bash # Create storage account (required) az storage account create \ --name myfuncstorage \ --resource-group mygroup \ --location eastus \ --sku Standard_LRS # Create Function App az functionapp create \ --name myfuncapp \ --resource-group mygroup \ --storage-account myfuncstorage \ --consumption-plan-location eastus \ --runtime python \ --runtime-version 3.11 \ --functions-version 4 # Create with Premium plan az functionapp plan create \ --name mypremiumplan \ --resource-group mygroup \ --location eastus \ --sku EP1 az functionapp create \ --name myfuncapp \ --resource-group mygroup \ --storage-account myfuncstorage \ --plan mypremiumplan \ --runtime node \ --runtime-version 20 \ --functions-version 4 ``` ### Python Functions (v2 Programming Model) #### HTTP Trigger ```python import azure.functions as func import logging import json app = func.FunctionApp(http_auth_level=func.AuthLevel.FUNCTION) @app.route(route="hello") def hello_http(req: func.HttpRequest) -> func.HttpResponse: logging.info('HTTP trigger function processed a...

Details

Author
majiayu000
Repository
majiayu000/claude-skill-registry
Created
5 months ago
Last Updated
today
Language
HTML
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

azure-functions

Expert patterns for Azure Functions development including isolated worker model, Durable Functions orchestration, cold start optimization, and production patterns. Covers .NET, Python, and Node.js programming models.

39,350 Updated today
sickn33
DevOps & Infrastructure Solid

azure-functions

Expert knowledge for Azure Functions development including troubleshooting, best practices, decision making, architecture & design patterns, limits & quotas, security, configuration, integrations & coding patterns, and deployment. Use when building HTTP/event-triggered apps, Durable Functions, Flex/Consumption hosting, containerized Functions, or CI/CD deployments, and other Azure Functions related development tasks. Not for Azure App Service (use azure-app-service), Azure Logic Apps (use azure-logic-apps), Azure Container Apps (use azure-container-apps), Azure Kubernetes Service (AKS) (use azure-kubernetes-service).

565 Updated yesterday
MicrosoftDocs
DevOps & Infrastructure Solid

azure-functions

Expert patterns for Azure Functions development including isolated worker model, Durable Functions orchestration, cold start optimization, and production patterns. Covers .NET, Python, and Node.js programming models. Use when: azure function, azure functions, durable functions, azure serverless, function app.

27,705 Updated today
davila7
DevOps & Infrastructure Listed

azure-functions

Expert patterns for Azure Functions development including isolated worker model, Durable Functions orchestration, cold start optimization, and production patterns. Covers .NET, Python, and Node.js programming models. Use when: azure function, azure functions, durable functions, azure serverless, function app.

36 Updated today
cleodin
DevOps & Infrastructure Listed

azure-functions

Expert patterns for Azure Functions development including isolated worker model, Durable Functions orchestration, cold start optimization, and production patterns. Covers .NET, Python, and Node.js programming models. Use when: azure function, azure functions, durable functions, azure serverless, function app.

335 Updated today
aiskillstore